Skip to content

Instantly share code, notes, and snippets.

@alexwybraniec
Created July 31, 2012 11:42
Show Gist options
  • Save alexwybraniec/3216388 to your computer and use it in GitHub Desktop.
Save alexwybraniec/3216388 to your computer and use it in GitHub Desktop.
Setup apache status
- sudo a2enmod status
- sudo nano /etc/apache2/conf.d/extendedstatus
- - Paste in 'ExtendedStatus On'
- sudo nano /etc/apache2/sites-available/xxx.com
Paste in...
<VirtualHost *:80>
ServerName status.ws1.xxx.com
ServerAlias status.ws1.xxx.com
<Location />
SetHandler server-status
</Location>
</VirtualHost>
- sudo apache2ctl graceful
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment