I have a super simple Apache setup on a SUSE box that is giving me the error in the title. Any ideas what it could be? I have checked all the conf files and found no duplicate NameVirtualHost directives anywhere...
My listen.conf file looks like this (some goodies ommitted):
NameVirtualHost *:80
NameVirtualHost *:443
and my vhost.conf file looks like this (some goodies ommitted):
<VirtualHost *:443>
ServerName subdomain.somedomain.com
## OTHER STUFF ##
</VirtualHost>
<VirtualHost *:443>
ServerName anothersubdomain.somedomain.com
## OTHER STUFF ##
</VirtualHost>
<VirtualHost *:80>
ServerName someotherserver.somedomain.com
## OTHER STUFF ##
</VirtualHost>