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: Once the program has been installed, pop open "httpd.conf" and add thefollowing lines to it: 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.
blog comments powered by Disqus |