I'm trying to add server-status location directive under one of my virtual host, however i'm getting a 403 Access Forbidden when browsing to www.mywebsite.com/server-status. Is it legal to put the Location Directive under a virtual host?
Edit #1: Full vhost config
<VirtualHost *:80>
# Admin email, Server Name (domain name) and any aliases
ServerAdmin
[email protected]
ServerName aumento.
io
ServerAlias www.aumento.
io
# Index file and Document Root (where the public files are located)
DirectoryIndex index.html index.php
DocumentRoot /home/cairocubicles/web/aumento.io/public
<Directory /home/cairocubicles/web/aumento.io/public>
Order Allow,Deny
Allow from all
Options Indexes FollowSymLinks
AllowOverride All
AcceptPathInfo On
</Directory>
<Location /server-status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from aumento.
io
</Location>
# Custom log file locations
LogLevel warn
ErrorLog /home/cairocubicles/web/aumento.io/log/error.log
</VirtualHost>