リバース・プロクシ

User Agent→(443)→Reverse Proxy→(80)→Web Server みたいな事をやる場合、以下の設定が必要

  1. mod_proxy.so, mod_proxy_http.soを有効にする。
  2. 443ポート用のVirtualHostディレクティブ内にssl.confのProxyPass, ProxyPassReverseディレクティブで遷移先を指定

既存のSSL設定にこんな感じで追記すれば良さそう

<VirtualHost _default_:443>
...

ProxyPass /hoge/ http://example.com/hoge/
ProxyPassReverse /hoge/ http://example.com/hoge/
</VirtualHost>