Re: [Zope] Apache in front of ZServer

2000-10-25 Thread Jørn Helge B. Dahl
* "Phil Harris" [EMAIL PROTECTED] | Jorn, | | I'm no Apache GrandMaster but couldn't you use the [p] option of a | RewriteRule to make it proxy if the url matches a pattern: | | RewriteEngine on | RewriteRule !^(/static/.*) http://myserver.com:8080$1 [p,l] | | Or something along those lines.

[Zope] Apache in front of ZServer

2000-10-24 Thread Jørn Helge B. Dahl
Hi all! I am aware of URL: http://www.zope.org/Members/anser/apache_zserver, but I am looking for at way to make Apache serve Zope from the root URL. It is possible to make the apache front end http://machine.domain.com/Zope be served by zope backend http://machine.domain.com:8080, but what

Re: [Zope] Apache in front of ZServer

2000-10-24 Thread Phil Harris
Helge B. Dahl" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 24, 2000 9:39 AM Subject: [Zope] Apache in front of ZServer Hi all! I am aware of URL: http://www.zope.org/Members/anser/apache_zserver, but I am looking for at way to make Apache serve Zope from th

Re: [Zope] Apache in front of ZServer

2000-10-24 Thread Jørn Helge B. Dahl
* "Phil Harris" [EMAIL PROTECTED] | Jorn, | | It's perfectly possible, you just need to do a little work ;) That's OK, that way it'll be more fun :-) | Your proxy pass will be something like this: | | ProxyPass / http://myserver.com:8080/ | ProxyPassReverse http://myserver.com:8080/ / I had

Re: [Zope] Apache in front of ZServer

2000-10-24 Thread Jørn Helge B. Dahl
* [EMAIL PROTECTED] (JXrn Helge B. Dahl) | | for the other part of serving static content, it really depends what you | | want but here are two ways to do it. | | | | 1.use the LocalFileSystem product, | | http://www.zope.org/Products/Members/jfarr/Products/LocalFS/LocalFS-0.9.6.tg | | z |

Re: [Zope] Apache in front of ZServer

2000-10-24 Thread Phil Harris
- From: "Jørn Helge B. Dahl" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 24, 2000 1:40 PM Subject: Re: [Zope] Apache in front of ZServer * [EMAIL PROTECTED] (JXrn Helge B. Dahl) | | for the other part of serving static content, it really depends what you

Re: [Zope] Apache in front of ZServer

2000-10-24 Thread A.J. Rossini
"JHBD" == JXrn Helge B Dahl [EMAIL PROTECTED] writes: JHBD On a second thought: What I _really_ want (I think, unless JHBD someone tells me differently :-) ) is a conditional JHBD ProxyPass, to tell apache to redirect everything _unless_ JHBD the URI is /static (or something).

Re: [Zope] Apache in front of ZServer

2000-10-24 Thread Oliver Bleutgen
* [EMAIL PROTECTED] (JXrn Helge B. Dahl) On a second thought: What I _really_ want (I think, unless someone tells me differently :-) ) is a conditional ProxyPass, to tell apache to redirect everything _unless_ the URI is /static (or something). But this is probably something for apache