I have fedora core 3 installed with apache.
I start apache using service httpd start
I have one index.html file in the /var/www/html and that appears to be the only directory apache is looking in for webpages.
I've setup my vhosts like such
Code:
NameVirtualHost xx.xx.xxyy.xxyy:80
<VirtualHost xx.xx.xxyy.xxyy:80>
ServerAdmin me@dodgeit.com
DocumentRoot /www/crispybacon
ServerName www.mysite.servebeer.com
# ErrorLog /www/logs/digitalquest.log
</VirtualHost>
<VirtualHost xx.xx.xxyy.xxyy:80>
ServerAdmin me@dodgeit.com
DocumentRoot /www/crispybacon
ServerName mysite.servebeer.com
# ErrorLog /www/logs/digitalquest.log
</VirtualHost>
My problem is this, the default site displays no matter which site i use.
I use no-ip to forward to my machines, so when i goto
http://mysite.sytes.net i see the index.html file that is in /var/www/html and when i goto
http://mysite.servebeer.com I see the same html file. I thought with the vhosts I should see the other directory of /www/crispybacon?