Ollie Acheson <[EMAIL PROTECTED]> writes:
>
> I am a new zope and plone user. My configuration is linux 2, python 2.4.2,
> zope 2.9.0 and plone 2.1.2. Zope and plone appear to be working fine when
> accessed through port 8080. My problem relates to using apache2 and rewrite
> rules to access virtual domains via port 80, i.e., no port as part of the
> address.
>
> <IfModule mod_proxy.c>
> ProxyVia On
> <LocationMatch "^[^/]">
> Deny from all
> </LocationMatch>
> </IfModule>
>
> </VirtualHost>
> -------------------------- end apache2 config file --------------------
This was someone else' solution:
_____
The proxy destination must be specifically allowed by the httpd.conf file, using
a line like this:
<IfModule mod_proxy.c>
<Directory proxy:http://localhost:8080/>
Order deny,allow
Allow from all
</Directory>
</IfModule>
_____
Also, Zope 2.1x is not supported with Zope 2.90, try 2.8x or 2.7x instead.
Hope that helps!
Dan
_______________________________________________
Setup mailing list
[email protected]
http://lists.plone.org/mailman/listinfo/setup