From 7da9d3a8a1ac7da26ae5f8c9a98696a3b4b5d32f Mon Sep 17 00:00:00 2001 From: Ernesto Baschny Date: Fri, 8 Aug 2025 16:27:20 +0200 Subject: [PATCH] Add more silence to apache output and logs * No more server version strings in output (security) * Silence some unneeded SSL logs --- files/httpd-vhost-global.conf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/files/httpd-vhost-global.conf b/files/httpd-vhost-global.conf index ef06ee3..87cd012 100644 --- a/files/httpd-vhost-global.conf +++ b/files/httpd-vhost-global.conf @@ -4,4 +4,12 @@ Require all granted +# Some security settings (hide version, disable trace, etc.) +ServerTokens Prod +ServerSignature Off +TraceEnable Off + +# Lower SSL logging to avoid excessive noise +LogLevel warn ssl:warn + # Listen directives will be added here by entrypoint.sh based on WEB_PORT_HTTP and WEB_PORT_HTTPS: