From 67040862f30dd80496a7e3d4158d77f68d9b3277 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Fri, 17 Jan 2025 15:22:40 +0100 Subject: [PATCH] Configuring Apache --- apache2/mods-available/status.conf | 43 +++++++++++++++--------------- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/apache2/mods-available/status.conf b/apache2/mods-available/status.conf index 1f8ea74..2f09656 100644 --- a/apache2/mods-available/status.conf +++ b/apache2/mods-available/status.conf @@ -1,30 +1,29 @@ -# Allow server status reports generated by mod_status, -# with the URL of http://servername/server-status -# Uncomment and change the "192.0.2.0/24" to allow access from other hosts. - - - SetHandler server-status - AuthName "Server Status Access" - AuthType Basic - AuthBasicProvider file - AuthUserFile /etc/apache2/info_users_passwd - - Require local - Require valid-user - + + # Allow server status reports generated by mod_status, + # with the URL of http://servername/server-status + # Uncomment and change the "192.0.2.0/24" to allow access from other hosts. - + + SetHandler server-status + AuthName "Server Status Access" + AuthType Basic + AuthBasicProvider file + AuthUserFile /etc/apache2/info_users_passwd + + Require local + Require valid-user + -# Keep track of extended status information for each request -ExtendedStatus On + -# Determine if mod_status displays the first 63 characters of a request or -# the last 63, assuming the request itself is greater than 63 chars. -# Default: Off -#SeeRequestTail On + # Keep track of extended status information for each request + ExtendedStatus On + # Determine if mod_status displays the first 63 characters of a request or + # the last 63, assuming the request itself is greater than 63 chars. + # Default: Off + #SeeRequestTail On - # Show Proxy LoadBalancer status in mod_status ProxyStatus On -- 2.39.5