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 ezpchardware@hotmail.com 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 admin@debarn.com 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 Quote Link to comment 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... Quote Link to comment 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 ezpchardware@hotmail.com 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 admin@debarn.com 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 Quote Link to comment 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 *> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.