Hi There,
I am pretty new to all this hosting stuff but I like a challenge

So far I managed to install and configure Ubuntu LAMP with name based virtual hosts and host a couple of websites. Very happy with results!
I was playing around with longview but noticed I couldn't get data from Apache, all the other tabs worked:
Quote:
Unable to access local server status for Apache at
http://127.0.0.1/server-status?auto: 404 Not Found
Apache status module has been enabled
Then I had to edit status.config: sudo nano /etc/apache2/mods-available/status.conf
Code:
<IfModule mod_status.c>
ExtendedStatus On
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from 127.0.01
# Allow from .example.com
</Location>
</IfModule>
After that I made sure this file had to right code: /etc/linode/longview.d/Apache.conf
Quote:
location <http://127.0.0.1/server-status?auto>
Still same error. Am I doing something wrong here? Probably missing something obvious

Hope someone can help me out here.
Thanks