summaryrefslogtreecommitdiffstats
path: root/18.0-rc/apache/config/autoconfig.php
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2020-02-13 20:14:56 +0100
committerGitHub <noreply@github.com>2020-02-13 20:14:56 +0100
commit4cd608a6e077168529b5501aa1c1ae3df4f9c505 (patch)
treed11023bfa83241268cfc0156774a1ee3302c9682 /18.0-rc/apache/config/autoconfig.php
parentac10481730fcafd872b53afaf0f6c2aeabf51d43 (diff)
parent884d8c21a5fe1ddfd40897859e9d6b79ed48ac3f (diff)
Merge pull request #997 from tilosp/bot/update
Update nextcloud to 18.0.1
Diffstat (limited to '18.0-rc/apache/config/autoconfig.php')
-rw-r--r--18.0-rc/apache/config/autoconfig.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/18.0-rc/apache/config/autoconfig.php b/18.0-rc/apache/config/autoconfig.php
deleted file mode 100644
index deeabe4e..00000000
--- a/18.0-rc/apache/config/autoconfig.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?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";
-}