[Zope] Apache virtual host combined with Zope
   
    Robert Wohlfahrt
     
    robert.wohlfahrt@sachsen-net.com
       
    Fri, 6 Apr 2001 23:02:28 +0200
    
    
  
Hi,
> www.spam.org should come from Zope at spam.org:8080
> www.spam.org/eggs should come from Apache (/var/www/eggs)
I would solve this problme with an "Alias":
<virtualhost 123.234.123.123>
	ServerName www.spam.org
	DocumentRoot	/your/doc/root
	......
	Alias /eggs/ /var/www/eggs/
	ProxyPass / http://www.spam.org:8080/
	ProxyPassReverse / http://www.spam.org:8080/
</virtualhost>
it works for me ...
Robert