----- Original Message ----- From: "Timothy Ball" <timball@gmail.com> To: <zope@zope.org> Sent: Tuesday, April 03, 2007 11:24 AM Subject: [Zope] ip-address vs http-server section
I want zope to listen to two different ip-addrs on two different ports and I'm unsure of how to configure zope to behave correctly.
I set ip-address <some ip addr> then I have two http-server sections ala this:
--snip--snip--snip-- ip-address <some-goofy-ipaddr>
<http-server> # valid keys are "address" and "force-connection-close" address <some-goofy-ipaddr>:8080 # force-connection-close on </http-server>
<http-server> # valid keys are "address" and "force-connection-close" address <some-other-goofy-ipaddr>:80 # force-connection-close on </http-server>
Is there a reason why you don't want to use something like a front-end apache with url rewriting? Jonathan