I am converting all my current VirtualHost configurations from being declared by ip to being declared by name (w/ NameVirtualHost set).
For this:
<VirtualHost www.test.com>
ServerAdmin webmaster@test.com
DocumentRoot /var/www/html/www.test.com/
ServerName www.test.com
ServerAlias test.com
</VirtualHost>
Do I need the ServerAlias or the ServerName? Will it still work without the www?
