summaryrefslogtreecommitdiffstats
path: root/17.0/fpm
diff options
context:
space:
mode:
Diffstat (limited to '17.0/fpm')
-rw-r--r--17.0/fpm/config/autoconfig.php4
-rwxr-xr-x17.0/fpm/entrypoint.sh4
2 files changed, 0 insertions, 8 deletions
diff --git a/17.0/fpm/config/autoconfig.php b/17.0/fpm/config/autoconfig.php
index deeabe4e..5bb85d42 100644
--- a/17.0/fpm/config/autoconfig.php
+++ b/17.0/fpm/config/autoconfig.php
@@ -23,9 +23,5 @@ if (getenv('SQLITE_DATABASE')) {
}
if ($autoconfig_enabled) {
- if (getenv('NEXTCLOUD_TABLE_PREFIX')) {
- $AUTOCONFIG["dbtableprefix"] = getenv('NEXTCLOUD_TABLE_PREFIX');
- }
-
$AUTOCONFIG["directory"] = getenv('NEXTCLOUD_DATA_DIR') ?: "/var/www/html/data";
}
diff --git a/17.0/fpm/entrypoint.sh b/17.0/fpm/entrypoint.sh
index 07b44d61..b9ec5fc5 100755
--- a/17.0/fpm/entrypoint.sh
+++ b/17.0/fpm/entrypoint.sh
@@ -115,10 +115,6 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
if [ -n "${NEXTCLOUD_ADMIN_USER+x}" ] && [ -n "${NEXTCLOUD_ADMIN_PASSWORD+x}" ]; then
# shellcheck disable=SC2016
install_options='-n --admin-user "$NEXTCLOUD_ADMIN_USER" --admin-pass "$NEXTCLOUD_ADMIN_PASSWORD"'
- if [ -n "${NEXTCLOUD_TABLE_PREFIX+x}" ]; then
- # shellcheck disable=SC2016
- install_options=$install_options' --database-table-prefix "$NEXTCLOUD_TABLE_PREFIX"'
- fi
if [ -n "${NEXTCLOUD_DATA_DIR+x}" ]; then
# shellcheck disable=SC2016
install_options=$install_options' --data-dir "$NEXTCLOUD_DATA_DIR"'