Doomboy Posted March 6, 2003 Share Posted March 6, 2003 Hello everyone I am trying to configure 2 virtual hosts (name based) using 1 public ip only. I beleive its possible but not luck to get it working. Would it be possible to help me out a bit with this.... Here\'s what I have in my config.. NameVirtualHost www.ezpchardware.com <VirtualHost www.ezpchardware.com> ServerAdmin [email protected] DocumentRoot C:Program FilesApache GroupApachehtdocsezpchardware ServerName www.ezpchardware.com ErrorLog /logs/ezpchardware_error_log TransferLog /logs/ezpchardware_access_log </VirtualHost> NameVirtualHost www.debarn.com <VirtualHost www.debarn.com> ServerAdmin [email protected] DocumentRoot C:Program FilesApache GroupApachehtdocsdebarn ServerName www.debarn.com ErrorLog C:Program FilesApache GroupApachelogsdebarn_error_log TransferLog C:Program FilesApache GroupApachelogsdebarn_access_log </VirtualHost> ----> error: Syntax error on line 1041 of C:.......... DocumentRoot takes one argument, Root directory of the document tree ---------------------------------------------------------------- Any help would be appreciated Thanks ! Mars Link to comment https://forums.phpfreaks.com/topic/201-virtual-host-help-needed/ Share on other sites More sharing options...
effigy Posted March 7, 2003 Share Posted March 7, 2003 try using (only one) NameVirtual Host * and the back slashes should be forward slashes i think... Link to comment https://forums.phpfreaks.com/topic/201-virtual-host-help-needed/#findComment-599 Share on other sites More sharing options...
Doomboy Posted March 7, 2003 Author Share Posted March 7, 2003 Thanks for your reply... NameVirtualHost * <VirtualHost www.ezpchardware.com> ServerAdmin [email protected] DocumentRoot C:/Program Files/Apache Group/Apache/htdocs/ezpchardware ServerName www.ezpchardware.com ErrorLog C:/Program Files/Apache Group/Apache/logs/ezpchardware_error_log TransferLog C:/Program Files/Apache Group/Apache/logs/ezpchardware_access_log </VirtualHost> <VirtualHost www.debarn.com> ServerAdmin [email protected] DocumentRoot C:/Program Files/Apache Group/Apache/htdocs/debarn ServerName www.debarn.com ErrorLog C:/Program Files/Apache Group/Apache/logs/debarn_error_log TransferLog C:/Program Files/Apache Group/Apache/logs/debarn_access_log </VirtualHost> Syntax error on line 1060 of c:/........ Document Root Takes one argument, Root Directory of the document tree. Anything else I should try ? Thanks mars Link to comment https://forums.phpfreaks.com/topic/201-virtual-host-help-needed/#findComment-605 Share on other sites More sharing options...
effigy Posted March 7, 2003 Share Posted March 7, 2003 ah ha! you have spaces in your path... double quote the path. if that doesn\'t help you can also try replacing <VirtualHost domainname> with <VirtualHost *> Link to comment https://forums.phpfreaks.com/topic/201-virtual-host-help-needed/#findComment-607 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.