When should I use this status.conf?
Use it to restore a missing default, confirm what shipped, or diff against your current Apache HTTP Server config.
# 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. <Location /server-status> SetHandler server-status Require local #Require ip 192.0.2.0/24 </Location> # 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 <IfModule mod_proxy.c> # Show Proxy LoadBalancer status in mod_status ProxyStatus On </IfModule>
curl https://exampleconfig.com/api/v1/config/original/a2068bd13eadd9b0b9168d94e21c37b6?hint=status.conf
wget -O status.conf https://exampleconfig.com/api/v1/config/original/a2068bd13eadd9b0b9168d94e21c37b6?hint=status.conf
<prompt><role>DevOps agent</role><source url='https://exampleconfig.com/api/v1/config/original/a2068bd13eadd9b0b9168d94e21c37b6?hint=status.conf' /><config><app>Apache HTTP Server</app><os>Ubuntu 24.04 LTS (Noble Numbat)</os><location>/etc/apache2/mods-available/status.conf</location><lines>23</lines><md5>a2068bd13eadd9b0b9168d94e21c37b6</md5><sha256>bd4009a7dca3d68c8f3d4c22dc549b4cbba0ec56fb5f3d82db6ba8ecb58cf589</sha256></config></prompt>
Paste into Claude, ChatGPT, or any AI assistant.
sudo apk add apache2
sudo apt update && sudo apt install apache2
sudo yum install httpd
sudo apt update && sudo apt install apache2
When should I use this status.conf?
Use it to restore a missing default, confirm what shipped, or diff against your current Apache HTTP Server config.
How do I restore Apache HTTP Server defaults?
Download the file, back up the current one in /etc/apache2/mods-available/status.conf, replace it, then reload or restart Apache HTTP Server.
Is status.conf safe for production?
It is the vendor default for Ubuntu 24.04 LTS (Noble Numbat). Treat it as a baseline and review security and performance settings before production use.
How does this differ from other OS versions?
Defaults vary by distro and version. This copy matches Ubuntu 24.04 LTS (Noble Numbat).
Can I use this for Apache HTTP Server troubleshooting?
Yes. Diff it against yours to find drift, then restore only the sections you need.