On Jul 27, 2009, at 6:47 PM, Mark Phillips wrote:

I am having a terrible time trying to get my zope server to work behind apache 2.2.9. I am running an Debian server with plone 2.5.5.

 [...]
    RewriteEngine on

    # use RewriteLog to debug problems with your rewrite rules
# disable it after you found the error our your harddisk will be filled *very fast*
    RewriteLog "/var/log/apache2/rewrite_log"
    RewriteLogLevel 3

    RewriteRule ^/(.*) \
http://127.0.0.1:8080/VirtualHostBase/http/%{SERVER_NAME}:80/ ahs/newspaper/VirtualHostRoot/$1 [L,P]

    ProxyRequests On

    <Proxy *>
      Order Deny,Allow
      Deny from All
      Allow from ahsnews.com
    </Proxy>


"ProxyRequests On" makes your Apache a forward proxy. You want a simple reverse proxy. Dump that line and the following Proxy block.

Ric



_______________________________________________
Product-Developers mailing list
[email protected]
http://lists.plone.org/mailman/listinfo/product-developers

Reply via email to