summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-10-27 22:24:16 +0100
committerLukas Reschke <lukas@owncloud.com>2014-10-27 22:24:16 +0100
commitd6380a53955e4de1a69e0a645821a7424e44135e (patch)
tree8529f9c75f1fd5e931fd0fb29366522d34ce27e3 /config
parenta00712aa65169b248cac8e541dfe69fd82082609 (diff)
parent79778d6a5118f3d024d1d4c1e001fba8fba13423 (diff)
downloadnextcloud-server-d6380a53955e4de1a69e0a645821a7424e44135e.tar.gz
nextcloud-server-d6380a53955e4de1a69e0a645821a7424e44135e.zip
Merge pull request #11786 from owncloud/MakeSupportedDBsConfigurable
Make supported DBs configurable within config.php
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 268b7cc9d08..09b59fcb5b4 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -808,6 +808,23 @@ $CONFIG = array(
),
/**
+ * Database types that are supported for installation
+ * Available:
+ * - sqlite (SQLite3)
+ * - mysql (MySQL)
+ * - pgsql (PostgreSQL)
+ * - oci (Oracle)
+ * - mssql (Microsoft SQL Server)
+ */
+'supportedDatabases' => array(
+ 'sqlite',
+ 'mysql',
+ 'pgsql',
+ 'oci',
+ 'mssql'
+),
+
+/**
* Custom CSP policy, changing this will overwrite the standard policy
*/
'custom_csp_policy' =>