Setting up a reverse proxy configuration with SSL
2009年10月22日
| 标签: https, reverse proxy, SSL, 反向代理
有时内网的一些服务只能通过https访问,但可以通过逆向代理服务器配置来访问。
1. Configure www.mycompany.com similar to the following example:
<VirtualHost *:80>
ServerName host1
SSLProxyEngine On
KeyFile "c:/program files/ibm http server/clientkey.kdb"
ProxyPass /ssl/password.html https://examplehost/password.html
</VirtualHost>
2. Configure internal.mycompany.com similar to the following example:
<VirtualHost *:443>
SSLEnable
KeyFile "c:/program files/ibm http server/serverkey.kdb"
</VirtualHost>
相关文章:
发表评论
| Trackback
