summaryrefslogtreecommitdiffstats
path: root/config/config.sample.php
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2014-10-27 14:43:31 +0100
committerJörn Friedrich Dreyer <jfd@butonic.de>2014-11-03 14:22:57 +0100
commit56fade9a04422175d4fe538404094ab59ba466b6 (patch)
tree357afdccbbdb7cedf81fae68f915447739238c4e /config/config.sample.php
parent70e68280b86c933a946be636e722886bc2bfcc9a (diff)
downloadnextcloud-server-56fade9a04422175d4fe538404094ab59ba466b6.tar.gz
nextcloud-server-56fade9a04422175d4fe538404094ab59ba466b6.zip
add driver options to config samples
Diffstat (limited to 'config/config.sample.php')
-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 26787781323..f2c3add83f8 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.