I use a ProxyPass/ProxyPassReverse directive pair to redirect my primary domain to my Plone site. I've had this running successfully for a couple of years on 6.0.
I've a new server running 7.0, and have installed Zope and Plone from the karan.org yum repository and have again used ProxyPass to direct to the Plone site.
On 6.0, Webmail was accessible via https:/domain/webmail; however on 7.0, it returns a 404 error. On the LAN, server-manager works as expected via https.
I assume this is related to changes in Apache? Can anyone suggest a way to resolve this?
The ProxyPass directives are:
#
# ProxyPass directive for Zope/Plone Virtual Host Monster
#
{
return "" unless $virtualHost eq "douganconsulting.com";
"ProxyPass /
http://localhost:9080/VirtualHostBase/http/douganconsulting.com:80/Plone/VirtualHostRoot/";
}
{
return "" unless $virtualHost eq "douganconsulting.com";
"ProxyPassReverse /
http://localhost:9080/VirtualHostBase/http/douganconsulting.com:80/Plone/VirtualHostRoot/";
}
Thanks,
Des