I'm having trouble getting Zope and Proxy Pass to work the way I expect.... Specifically if you look at this site: http://www.bmb.colostate.edu:8111/ it's really supposed to proxypass to webdev.bmb.colostate.edu, but the ProxyPassReverse directive doesn't seem to clean/modify/correct the base tag in the header as I understand it should.... Here's the proxypass section of my httpd.conf for apache: ProxyRequests on NoCache * ProxyPass / http://webdev.bmb.colostate.edu/ ProxyPassReverse / http://webdev.bmb.colostate.edu/ ProxyPass /misc_ http://webdev.bmb.colostate.edu/misc_ ProxyPass /p_ http://webdev.bmb.colostate.edu/p_ And in the past I've tried it as: ProxyRequests on NoCache * ProxyPass /Zope/ http://webdev.bmb.colostate.edu/ ProxyPassReverse /Zope/ http://webdev.bmb.colostate.edu/ ProxyPass /misc_ http://webdev.bmb.colostate.edu/misc_ ProxyPass /p_ http://webdev.bmb.colostate.edu/p_ Ideas? Thanks, Josh -- ------------------------------------------------- Joshua Brauer Computer Support Scientist Department of Biochemistry and Molecular Biology Colorado State University Fort Collins, CO 80523 (970) 491-1080/pager: (970) 498-7995, #5837 -------------------------------------------------
Joshua Brauer wrote:
I'm having trouble getting Zope and Proxy Pass to work the way I expect....
Specifically if you look at this site:
I can't get to this url at all. In fact, I don't know how this relates to the proxypass rules below...
it's really supposed to proxypass to webdev.bmb.colostate.edu, but the ProxyPassReverse directive doesn't seem to clean/modify/correct the base tag in the header as I understand it should....
You have to use siteAccess to correct the base tag & any generated URL's.
Here's the proxypass section of my httpd.conf for apache: ProxyRequests on NoCache * ProxyPass / http://webdev.bmb.colostate.edu/ ProxyPassReverse / http://webdev.bmb.colostate.edu/ ProxyPass /misc_ http://webdev.bmb.colostate.edu/misc_ ProxyPass /p_ http://webdev.bmb.colostate.edu/p_
Josh, the proxypass rules on zope.org are pretty simple: <VirtualHost 209.67.167.55> ServerName www.zope.org ProxyPass / http://www.zope.org:93/ ProxyPassReverse / http://www.zope.org:93/ </VirtualHost> and everything seems to work fine, with a SiteRoot that says that SiteRootBASE is http://www.zope.org hope that helps, -- ethan mindlace fremen Zopatista Community Liason Abnegate I!
participants (2)
-
ethan mindlace fremen -
Joshua Brauer