Created
July 31, 2012 11:42
-
-
Save alexwybraniec/3216388 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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