From c17f169157945c1276966684beea39fd00d0578a Mon Sep 17 00:00:00 2001 From: "Arnaud G. GIBERT" Date: Fri, 28 Nov 2025 14:38:59 +0100 Subject: [PATCH] - Fix httpd not enabled by default! --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ac86706..e386b3b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,8 @@ groupmod -g ${APACHE_GID} apache chgrp apache /usr/bin/pwauth \n\ chmod u+s /usr/bin/pwauth \n\ \n\ -if [[ "${APACHE_HTTPD_ENABLED}" != "TRUE" ]] \n\ +# HTTPD enabled by default \n\ +if [[ "${APACHE_HTTPD_ENABLED}" == "FALSE" ]] \n\ then \n\ file_enable /etc/supervisord.d/httpd.ini FALSE \n\ else \n\