diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-10-27 14:43:31 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-10-27 14:43:31 +0100 |
commit | de72aff2c1303b848cbf6fa49ea3d8a466344491 (patch) | |
tree | 7d7c02e6f48c4308d23cec8c84d23c848386d89d /config | |
parent | e16a58220d1e82beb29ab6fe6102710dcc2ad27a (diff) | |
download | nextcloud-server-de72aff2c1303b848cbf6fa49ea3d8a466344491.tar.gz nextcloud-server-de72aff2c1303b848cbf6fa49ea3d8a466344491.zip |
add driver options to config samples
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 621e5df80b3..268b7cc9d08 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -120,6 +120,13 @@ $CONFIG = array( 'dbtableprefix' => '', /** + * Additional driver options for the database connection, eg. to enable SSL encryption in MySQL: + */ +'dbdriveroptions' => array( + PDO::MYSQL_ATTR_SSL_CA => '/file/path/to/ca_cert.pem', +), + +/** * Indicates whether the ownCloud instance was installed successfully; ``true`` * indicates a successful installation, and ``false`` indicates an unsuccessful * installation. |