How exactly can the ServerAdmin
directive in Apache2 be useful?
The Apache2 documentation reads:
The ServerAdmin sets the contact address that the server includes in any error messages it returns to the client.
But whenever I get a 404 Error back, the email address set in my vhost is nowhere to be seen. Do I need some extra Directive to make it work?
vhost:
<VirtualHost *:8080>
ServerAdmin myemail@gmail.com
ServerName testsite.example.com
DocumentRoot /var/www/example.com/www
</VirtualHost>