From 05aa9f354251c0cc43a7244bd1d0dd3db0ccb20c Mon Sep 17 00:00:00 2001 From: Robin Date: Wed, 11 Aug 2021 18:07:57 +0200 Subject: [PATCH] Enable friendly urls by default --- php_fpm/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php_fpm/Dockerfile b/php_fpm/Dockerfile index 05fbac0..0cc2fb4 100644 --- a/php_fpm/Dockerfile +++ b/php_fpm/Dockerfile @@ -35,6 +35,9 @@ ENV VERSION=${VERSION} ENV NAMELESSMC_METRICS_DOCKER=true # Hide path option in the installer, subdirectories are not compatible with the nginx configuration -ENV NAMELESS_PATH_HIDE=1 +ENV NAMELESS_PATH_HIDE=true + +# Enable friendly URLs and hide the option by default, they work fine with the included configuration and there is no reason to turn it off. +ENV NAMELESS_FRIENDLY_URLS=true NAMELESS_FRIENDLY_URLS_HIDE=true ENTRYPOINT [ "bash", "/entrypoint.sh" ]