Hi,
I'm using Apache2 on RH9. I've hosted a single web site with a singe IP with no problems for the past month.
This week I've attempted to host a second site using the same IP - using the name based virtual server options, but I'm not having any luck. I keep getting the Apache Test page - when I think that I have it configured correctly. With some tweaking, I can get the original page with both web site addresses (which I don't want - I want to host 2 separate sites, with separate addresses).
I've set the folder's permissions to 755.
I'm sure that it is something simple that I've overlooked, I've been scouring the web and books, but I can't seem to pin down what I'm missing (or don't understand).
Here's the only things that I've changed on the httpd.conf since adding the new site:
NameVirtualHost xxx.xx.xx.xxx
#
# Virtual hosts
#
# Virtual host newwebsite.com
<VirtualHost xxx.xx.xx.xxx>
DocumentRoot /var/www/html/sj
ServerName newwebsite.com
ServerAlias
www.newwebsite.com
ServerSignature email
</VirtualHost>
# Virtual host originalwebsite.net
<VirtualHost xxx.xx.xx.xxx>
DocumentRoot /var/www/html/hpd
ServerName originalwebsite.net
ServerAlias
www.originalwebsite.net
ServerSignature email
</VirtualHost>
Thanks for your help.
