要将 Apache ProxyPass 指令与动态主机名一起使用,您还需要使用 ModRewrite。
客观的
对虚拟主机的所有请求都将 ProxyPass 和 ProxyPassReverse(也称为“Apache 网关”)发送到 %{HTTP_HOST}
这样做有意义的唯一原因是,如果您在 apache 服务器上有特定主机名的 localhost 条目
例子
本地主机文件
10.0.0.2 foo.bar.com
10.0.0.3 bar.bar.com
这个怎么运作
- 客户端向 foo.bar.com 发出请求(dnslookup 是公共 IP...您的 APACHE SERVER)
- 您的 apache 服务器有一个 10.0.0.2 的 localhost 条目,用于 foo.bar.com(您网络上的其他服务器)
- 请求通过 ModRewrite 并附加 /path1,然后移交给 ProxyPass 和 ProxyPassReverse
- ProxyPass 和 ProxyPassReverse 在 ip 10.0.0.2 上将呼叫传递给 foo.bar.com
客户端请求 foo.bar.com ---反向代理到----> foo.bar.com/path1(在一些其他内部服务器上)
阿帕奇配置
<VirtualHost *:443>
Servername *
# Must not contain /path1 in path (will add /path1)
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/path1/.*
RewriteRule ^/(.*) https://%{HTTP_HOST}/path1$1 [NC,R=302,L]
# Must contain /path1 in path (will send request to the proxy)
RewriteEngine On
RewriteOptions Inherit
RewriteCond %{REQUEST_URI} ^/path1/.*
RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [NC,P]
SSLEngine on
SSLProxyEngine On
ProxyRequests Off
ProxyPass / https://$1/
ProxyPassReverse / https://$1/
ProxyPreserveHost On
###################
# SSL Constraints #
###################
SSLProtocol -ALL +SSLv3 +TLSv1
# Choose cipher suites
SSLHonorCipherOrder On
SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:!LOW:!SSLv2:!EXPORT
# SameOrigin The page can only be displayed in a frame on the same origin as the page itself
Header set X-Frame-Options SAMEORIGIN
SSLCertificateFile /etc/apache2/example.crt
SSLCertificateKeyFile /etc/apache2/example.key
SSLCertificateChainFile /etc/apache2/gd_bundle.crt
SetOutputFilter INFLATE;proxy-html;DEFLATE
</VirtualHost>