On 2013-01-11 00:14, CS DBA wrote:
Our /etc/httpd/conf/http.conf file includes this:<VirtualHost *:80> DocumentRoot /var/www/html/mysite ServerName mysite.com ServerAlias www.mysite.com </VirtualHost> And our /etc/httpd/conf.d/mysite.conf file looks like this: <Directory /var/www/html/mysite> Order Deny,Allow Allow from all AddHandler cgi-script .cgi Options +Indexes +ExecCGI +FollowSymLinks DirectoryIndex index.cgi AllowOverride Limit Options FileInfo </Directory> Thoughts?
It appears you've missed the NameVirtualHost directive. http://httpd.apache.org/docs/2.2/mod/core.html#namevirtualhost
