apache2 vhosts problem
[Wed Sep 17 13:49:15 2003] [error] VirtualHost default:443 – mixing * ports and non-* ports with a NameVirtualHost address is not supported, proceeding with undefined results
however, I cannot figure out where this is coming from. I don't have any virtual hosts setup with port 443. Is apache loading this from some other conf file? BTW, i am running the small Redhat 9 image
5 Replies
Adam
Instead of renaming the file, it is better to comment out the call to the ssl.conf file from the main config file.
Adam
If you want to leave SSL working (at least I think it's working -- don't need it so haven't checked yet) you can edit the virtualhosts line in the ssl.conf file so that it just has an * instead of the default line or a port number. According to my reading of the docs, since there's a listen 443 statement above the virtualhost, virtualhost will pick the port 443 from there and not the main listen 80. (Picks it from the closest "listen" statement.)
Am I smoking crack, or does this make sense? I'm new at this.