Using Zope With Apache - Performing By Proxy (Page 6 of 7 )
Of course, there are other ways to get Zope and Apache talking as well.One of the most interesting involves using Apache's proxy module totransparently pass Zope requests to the ZServer.
The first step is to make sure that your Apache build includes supportfor the proxy module (look for "mod_proxy.c" in the output of "httpd-l"). If it doesn't, you can recompile Apache by doing the following:
$ cd /tmp/sources
$ tar -xzvf apache_1.3.20.tar.gz
$ cd apache_1.3.20
$ ./configure --enable-module=proxy
$ make
$ make install
Once the program has been installed, pop open "httpd.conf" and add thefollowing lines to it:
ProxyPass /community http://localhost:8080/
ProxyPassReverse /community http://localhost:8080/
This tells the server to intercept all requests for the URL /community(the first argument to ProxyPass), and redirect them to the Zope server(the second argument).
While this approach is simple, it does have a few glitches. Take a lookat
http://www.zope.org/Members/anser/apache_zserver for a detailedexplanation of these problems, together with some very elegant hacksthat solve them quite well.
Next: Zip Zap Zoom >>
More Zope Articles
More By icarus, (c) Melonfire