Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/docker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2022-06-30 15:59:15 +0300
committerGitHub <noreply@github.com>2022-06-30 15:59:15 +0300
commit209d65d0b6a5c50d66b538169545628658810ab6 (patch)
tree5768e9ed1d00a3d9b82262e541f0635114183fec
parentc416385b7c97f7d5a385f0133fd4fb6cb31690db (diff)
Add `NEXTCLOUD_INIT_HTACCESS` to run `occ maintenance:update:htaccess` after init (#1761)
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
-rw-r--r--README.md4
-rwxr-xr-xdocker-entrypoint.sh6
2 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md
index b40349c..01c1aa0 100644
--- a/README.md
+++ b/README.md
@@ -141,6 +141,10 @@ If you share your html folder with multiple docker containers, you might want to
- `NEXTCLOUD_INIT_LOCK` (not set by default) Set it to true to enable initialization locking. Other containers will wait for the current process to finish updating the html volume to continue.
+You might also want to make sure the htaccess is up to date after each container update. Especially on multiple swarm nodes as any discrepancy will make your server unusable.
+
+- `NEXTCLOUD_INIT_HTACCESS` (not set by default) Set it to true to enable run `occ maintenance:update:htaccess` after container initialization.
+
If you want to use Redis you have to create a separate [Redis](https://hub.docker.com/_/redis/) container in your setup / in your docker-compose file. To inform Nextcloud about the Redis container, pass in the following parameters:
- `REDIS_HOST` (not set by default) Name of Redis container
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
index 309524f..7dac0df 100755
--- a/docker-entrypoint.sh
+++ b/docker-entrypoint.sh
@@ -217,6 +217,12 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
echo "Initializing finished"
fi
fi
+
+ # Update htaccess after init if requested
+ if [ -n "${NEXTCLOUD_INIT_HTACCESS+x}" ]; then
+ run_as 'php /var/www/html/occ maintenance:update:htaccess'
+ fi
+
fi
exec "$@"