I've used siteroot in the past, without any problems. With ProxyPass and ProxyPassReverse, I was able to run my beautiful zope nicely behind Apache. Then I upgraded to zope 2.3.2 It almost works, but not quite. Unfortunately, some weeks before upgrading Zope, I upgraded Apache, so I no longer have my old directives to look at. Here's how I set them up: <IfModule mod_proxy.c> ProxyRequests On ProxyPass /Zope/ http://127.0.0.1:8080/ ProxyPassReverse /Zope/ http://127.0.0.1:8080/ ProxyPass /misc_ http://127.0.0.1:8080/misc_ ProxyPass /p_ http://127.0.0.1:8080/p_ </IfModule> and my siteroot base looks like this: http://127.0.0.1:8080/Zope It almost works. When I go to http://127.0.0.1/Zope/ I get the welcome screen, minus the logo at the bottom. Clicking on the management link, however, takes me to the usual management frameset, but all three documents come up with notfound errors. Any ideas? ta Wayne _______________________________________________________ Do You Yahoo!? Get your free @yahoo.ca address at http://mail.yahoo.ca
From: "Wayne Izatt" <wizatt@yahoo.ca>
and my siteroot base looks like this:
The Base isn't supposed to have a path in it. That's what Path is for. Also, the Base should be set to the *external* hostname handled by Apache: Base: http://yoursite.com Path: /Zope Cheers, Evan @ digicool
participants (2)
-
Evan Simpson -
Wayne Izatt