Re: [Zope] zope with apache
Date: Thu, 18 Dec 2003 15:32:49 From: Rajeev Sharma <rajeev@netcore.co.in> Subject: [Zope] zope with apache To: zope@zope.org Message-ID: <1071741769.3fe17b49704eb@192.168.2.1> Content-Type: text/plain; charset=ISO-8859-1
Hello Everybody,
I am trying to configure zope with apache and using the following way. After adding VHM to the zope directory added Following lines in httpd.conf of apache
<VirtualHost *> ServerName www.example.com RewriteEngine On RewriteRule ^/(.*)http://Ip_of_the_server:8080/VirtualHostBase/http/www.example.com:80/ Name_of _the_zopedirectory/VirtualHostRoot/$1 [L,P] </VirtualHost>
But it is not working.
I also compiled apache with --enable -rewrite module. Looking for advice and help.
Thanks in advance - Rajeev Sharma NetCore Solution (Mumbai)
Rajeev, You did not mention the mod_proxy module in your configuration. Either load the module or compile apache with --enable-module=proxy Additional configurations are: Listen 80 ProxyVia On Do you have ErrorLog, TransferLog, and RewriteLog specified? They should give you hints what goes wrong. Guenter
participants (1)
-
Günter Dannoritzer