On 5/15/06, Adrian Jones <[EMAIL PROTECTED]> wrote:
Hi,

Hi Adrian :)

Do I need to use Apache to rewrite URLs to pass on to zope even though they 
have separate IPs? Currently I have the ip-address in zope.conf set to one IP 
with apache ports.conf set to the other, they are both set to port 80. I assume 
the port conflict is the problem, but how do I get them both to listen on port 
80 yet different IPs?

You can't use the same ip/port for more one application. So, you have
2 solutions to solve the problem :

- use Apache for all site, with virtual host (and proxypass/rewrite
rule for zope's site).
- use a different ip for Zope or Apache. To implement this solution,
you must give the ip in the config file. For example in zope.conf, the
right directive to use is "ip-address", like this :
ip-address 192.168.1.2

But I prefer the first solution, Apache handle more efficiently http
request and "smooth" all requests for Zope (looks the difference in
stress test with users > 100)..


--
Sébastien Douche <[EMAIL PROTECTED]>
_______________________________________________
Setup mailing list
[email protected]
http://lists.plone.org/mailman/listinfo/setup

Reply via email to