shehroz Posted August 9, 2006 Share Posted August 9, 2006 i have added below code to httpd.conf, but i could not restart the server. it says error.NameVirtualHost 111.22.33.44 <VirtualHost 111.22.33.44> ServerName www.domain.tld ServerPath /domain DocumentRoot /web/domain </VirtualHost>what is my error in this code? Link to comment https://forums.phpfreaks.com/topic/17071-virtual-host-error/ Share on other sites More sharing options...
oldmanice Posted August 10, 2006 Share Posted August 10, 2006 You havent got a proper document root you cant have your document root your domian name you need to place your server files like your Mp3 , Txt and etc files as your document root Link to comment https://forums.phpfreaks.com/topic/17071-virtual-host-error/#findComment-72520 Share on other sites More sharing options...
youcantoo Posted August 11, 2006 Share Posted August 11, 2006 [quote][quote]i have added below code to httpd.conf, but i could not restart the server. it says error.NameVirtualHost 111.22.33.44 <VirtualHost 111.22.33.44> ServerName www.domain.tld ServerPath /domain DocumentRoot /web/domain </VirtualHost>what is my error in this code?[/quote]It should look something likeNamedVirtualHost your IP address <VirtualHost xxX.xxx.xxx.xxx> ServerName domain.tld ServerAlias www.domain.tld ServerAdmin [email protected] DocumentRoot /path/to/your/web/files <Directory /path/to/your/web/files> Order Allow,deny </Directory> </VirtualHost>Do not forget that the server will have to be restarted after making any changes to the httpd.conf file Link to comment https://forums.phpfreaks.com/topic/17071-virtual-host-error/#findComment-73382 Share on other sites More sharing options...
oldmanice Posted September 4, 2006 Share Posted September 4, 2006 Just change it to VirtualHost xxX.xxx.xxx.xxx> ServerName domain.tld ServerAlias www.domain.tld ServerAdmin [email protected] DocumentRoot /path/to/your/web/files <Directory /path/to/your/web/files> Order Allow,deny </Directory> </VirtualHost>BTW the xxx arent kisses thats your local ip address Link to comment https://forums.phpfreaks.com/topic/17071-virtual-host-error/#findComment-86025 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.