summaryrefslogtreecommitdiffstats
path: root/16.0-rc/fpm-alpine/config/autoconfig.php
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2020-03-06 18:30:35 +0100
committerGitHub <noreply@github.com>2020-03-06 18:30:35 +0100
commit6c1044fef4482e6b2303e850c12befa1a4edc666 (patch)
treea83c7cb0d9397d8ff430cceb570575031f22db16 /16.0-rc/fpm-alpine/config/autoconfig.php
parentac8c9984319e45fd34fa3863f82fd9063d628aa4 (diff)
parentda5b3bed1f02ec43901f17b524ed2d2b124d3f6c (diff)
Merge pull request #1020 from tilosp/bot/update
Add nextcloud 16.0.9RC1, 17.0.4RC1 and 18.0.2RC1
Diffstat (limited to '16.0-rc/fpm-alpine/config/autoconfig.php')
-rw-r--r--16.0-rc/fpm-alpine/config/autoconfig.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/16.0-rc/fpm-alpine/config/autoconfig.php b/16.0-rc/fpm-alpine/config/autoconfig.php
new file mode 100644
index 00000000..deeabe4e
--- /dev/null
+++ b/16.0-rc/fpm-alpine/config/autoconfig.php
@@ -0,0 +1,31 @@
+<?php
+
+$autoconfig_enabled = false;
+
+if (getenv('SQLITE_DATABASE')) {
+ $AUTOCONFIG["dbtype"] = "sqlite";
+ $AUTOCONFIG["dbname"] = getenv('SQLITE_DATABASE');
+ $autoconfig_enabled = true;
+} elseif (getenv('MYSQL_DATABASE') && getenv('MYSQL_USER') && getenv('MYSQL_PASSWORD') && getenv('MYSQL_HOST')) {
+ $AUTOCONFIG["dbtype"] = "mysql";
+ $AUTOCONFIG["dbname"] = getenv('MYSQL_DATABASE');
+ $AUTOCONFIG["dbuser"] = getenv('MYSQL_USER');
+ $AUTOCONFIG["dbpass"] = getenv('MYSQL_PASSWORD');
+ $AUTOCONFIG["dbhost"] = getenv('MYSQL_HOST');
+ $autoconfig_enabled = true;
+} elseif (getenv('POSTGRES_DB') && getenv('POSTGRES_USER') && getenv('POSTGRES_PASSWORD') && getenv('POSTGRES_HOST')) {
+ $AUTOCONFIG["dbtype"] = "pgsql";
+ $AUTOCONFIG["dbname"] = getenv('POSTGRES_DB');
+ $AUTOCONFIG["dbuser"] = getenv('POSTGRES_USER');
+ $AUTOCONFIG["dbpass"] = getenv('POSTGRES_PASSWORD');
+ $AUTOCONFIG["dbhost"] = getenv('POSTGRES_HOST');
+ $autoconfig_enabled = true;
+}
+
+if ($autoconfig_enabled) {
+ if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
+ $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
+ }
+
+ $AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
+}