Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2014-10-27 16:43:31 +0300
committerJörn Friedrich Dreyer <jfd@butonic.de>2014-10-27 16:43:31 +0300
commitde72aff2c1303b848cbf6fa49ea3d8a466344491 (patch)
tree7d7c02e6f48c4308d23cec8c84d23c848386d89d /config
parente16a58220d1e82beb29ab6fe6102710dcc2ad27a (diff)
add driver options to config samples
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php7
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.