[Zope] Re: Proxy only the Zope management interface over SSL?

Lonnie Maynard lmaynard@ontap.com
Mon, 08 Jul 2002 17:13:18 -0600


I'm using Apache for both the SSL and the regular web server. The SSL side 
is another virtual host in the same apache config. THKS Lonnie 


Dieter Maurer writes: 

> Lonnie Maynard writes:
>  > I am curious if someone has found a way to proxy only the Zope management 
>  > interface over SSL while leaving the tier 3 pages open. I am fronting Zope 
>  > with Apache. httpd.conf looks like this. 
>  > 
>  > <VirtualHost XXX.YYY.com>
>  >   ......
>  >   ReWriteEngine on
>  >   ReWriteRule ^(.+)/manage https://XXX.YYY.com/$1/manage [R,L]
>  >   ProxyPass / http://ZZZ.YYY.com:8080/
>  >   ProxyPassReverse / http://ZZZ.YYY.com:8080/
>  > </VirtualHost> 
>  > 
>  > Proxy works fine, but rewrite rule doesn't work correctly. I'm also not sure 
>  > Zope will get along with this anyway. Thanks for any information. 
> What server listens at the HTTPS port of "XXX.YYY.com"? 
> 
> Almost surely, it is not Zope. 
> 
> 
> Dieter