I'm trying to create a virtualhost with the following <VirtualHost 192.168.x.x> ServerAdmin webmaster@abc.info DocumentRoot /var/www/abc.info/web ServerName www.abc.info <directory /var/www/abc.info> #Options Indexes FollowSymLinks AllowOverride all Order Allow,Deny #Deny from all Allow from all </directory> </VirtualHost> apache doesn't seem to like the .info in both the DocumentRoot and ServerName they both appear in red. Is there something in a configuration file or elsewhere to allow for the use of a .info domain?
Use the following VirtualHost entry: Then restart the httpd service. Paste the error message you receive while restarting the httpd service.
madaboutlinux Thanks, worked fine after you help and a chmod change. Looks like all I left out was the ServerAlias. I didn't know it was required. Before I wasn't getting an err but it would load my defualt site at /var/www. Thank again microhop