From ad58d251266f032efb852044f1d9f81661c51fe9 Mon Sep 17 00:00:00 2001 From: Robin Date: Wed, 11 Aug 2021 18:03:59 +0200 Subject: [PATCH] Hide path using new env var --- php_fpm/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/php_fpm/Dockerfile b/php_fpm/Dockerfile index 3998edd..05fbac0 100644 --- a/php_fpm/Dockerfile +++ b/php_fpm/Dockerfile @@ -34,4 +34,7 @@ ENV VERSION=${VERSION} # Used by website to know if it runs using our docker images for statistics ENV NAMELESSMC_METRICS_DOCKER=true +# Hide path option in the installer, subdirectories are not compatible with the nginx configuration +ENV NAMELESS_PATH_HIDE=1 + ENTRYPOINT [ "bash", "/entrypoint.sh" ]