hi,
 
I have a question of virtual host monster in combination with a virtual plone site, in combination with an apache site
 
I have an url http://212.100.163.214:8080/help  that should be directed to http://212.100.163.214/help    : this means that everytime i go to the url or http://212.100.163.214/help , I should arrive to http://212.100.163.214:8080/help    , which is a zope site. I have installed vhm in the root folder of http://212.100.163.214:8080 and i have as httpd.conf zope-part :
 
 
 
LoadModule proxy_module /usr/lib/apache/1.3/libproxy.so
AddModule mod_proxy.c
<VirtualHost 212.100.163.214>
            ServerAdmin johan.boeckx@be.easynet.net
            DocumentRoot /opt/jffnms/htdocs
            ServerName managedrouters.easynet.be
</VirtualHost>
<VirtualHost *>
ServerName managedrouters.easynet.be/help
ServerAdmin johan.boeckx@be.easynet.net
ServerAlias managedrouters.easynet.be/help
ProxyPass / http://212.100/163.214:8080/VirtualHostbase/http/managedrouters.easynet.be:80/help/VirtualHostRoot/
ProxyPassReverse / http://212.100/163.214:8080/VirtualHostbase/http/managedrouters.easynet.be:80/help/VirtualHostRoot/
</VirtualHost>
 
Nevertheless, when i try to access http://212.100.163.214/help/  , I see in the logs of apache :
 
[Thu Jan  6 22:53:18 2005] [error] [client 81.188.66.90] File does not exist: /opt/jffnms/htdocs/help
 
, which is the document root of the first site, while i need to arrive on the plone-site.
Anybody know what i do wrong ?
 
Greetings,
Johan