Zope/Plone hinter einem Apache
Konfiguration des Apache 2 als Reversproxy um beim aufruf einer Domain direkt eine Plonesite anzuzeigen.
Hier ein einfaches Beispiel für eine Apachekonfiguration:
<VirtualHost *:80>
ServerName www.example.org
ServerAlias example.org ServerAdmin webmaster@example.org ServerSignature On CustomLog /var/log/apache2/example.org-access.log combined ErrorLog /var/log/apache2/example.org-error.log LogLevel warn RewriteEngine On RewriteRule ^/(.*) http://localhost:8080/VirtualHostBase/http/%{SERVER_NAME}:80/plonesite/VirtualHostRoot/$1 [L,P] </VirtualHost>