Plone4とapacheの連携
http://example.netへの接続時にhttp://example.net:8080/Plone/と同じように表示するための設定。
バーチャルホストの設定
<VirtualHost *:80>ServerName example.netRewriteEngine OnRewriteRule ^/(.*) http://localhost:8080/VirtualHostBase/http/example.net:80/Plone/VirtualHostRoot/$1 [L,P]</VirtualHost>
モジュールの有効化
必要モジュール
- mod_rewrite
- mod_proxy
- mod_proxy_http
コンフィグ書き換えなりa2modコマンドなり好きにしてください。
さらにdebian系の場合は/etc/apache2/mods-enabled/proxy.confに以下を追記
<Proxy *> Allow from all </Proxy>
広告