Thanks for taking the time to read and reply to my post.
When you say put a "default" VH above the proper one, do you mean simply as the first entry in the VH section of httpd.conf ?
I have pasted a copy of the the fisrt VH below. That ServerName is the same domain as applied to the box.
Quote:
<VirtualHost 123.123.123.123:80>
SuexecUserGroup "#501" "#501"
ServerName domain.co.uk
ServerAlias www.domain.co.uk
DocumentRoot /home/domain/public_html
ErrorLog /home/domain/logs/error_log
CustomLog /home/domain/logs/access_log combined
ScriptAlias /cgi-bin/ /home/domain/cgi-bin/
<Directory /home/domain/public_html>
Options Indexes IncludesNOEXEC FollowSymLinks
allow from all
AllowOverride All
</Directory>
<Directory /home/domain/cgi-bin>
allow from all
</Directory>
</VirtualHost>
*The real domain has been replaced by "domain" of course.
|
I hope I am going in the right direction here.
When you say remove "non virtual host configs." are you talking about way up near the top of the config file (global settings ?).
There are entries there like this :
Quote:
<Directory "/var/www/html">
...
Options Indexes FollowSymLinks
...
AllowOverride AuthConfig
...
Order allow,deny
Allow from all
</Directory>
|
Again, I appreciate your time and assistance.