Forum Moderators: phranque
in /etc/httpd/conf
# Include all the virtual host config files
Include /etc/httpd/conf/virtual
Then in /etc/httpd/conf/virtual - create a file called example.com (or whatever)
# Example.com
<VirtualHost 1.1.1.1:80>
ServerName www.example.com
ServerAlias example.com
ServerAdmin me@example.com
DocumentRoot /home/virtual/example.com/www/html
# Include other config files if necessary - this would be a directory
Include /etc/httpd/conf/example.com
</VirtualHost>
When I loaded the pages in my browser it just showed the whole cgi code. Any known reason for this. I am Windows 2003.