summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2017-08-29 00:36:38 +0200
committerTilo Spannagel <development@tilosp.de>2017-08-29 01:07:09 +0200
commit8a61625cd39f003357e887948fcae44f9198de65 (patch)
treeeaf750d723bd3746ace86ae33fdb9c0e731c033e /.config
parentfb4a84cfb41e7fd8f862cbc3e09b3887ea4d6300 (diff)
Add autoconfig.php
Diffstat (limited to '.config')
-rw-r--r--.config/autoconfig.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/.config/autoconfig.php b/.config/autoconfig.php
new file mode 100644
index 00000000..52061ac3
--- /dev/null
+++ b/.config/autoconfig.php
@@ -0,0 +1,24 @@
+<?php
+if (getenv('SQLITE_DATABASE')) {
+ $AUTOCONFIG["dbtype"] = "sqlite";
+ $AUTOCONFIG["dbname"] = getenv('SQLITE_DATABASE');
+ $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX') ?: "";
+} 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["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX') ?: "";
+} 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["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX') ?: "";
+}
+
+if (getenv('NEXTCLOUD_DATA_DIR')) {
+ $AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR');
+}