Setting up a reverse proxy configuration with SSL

2009年10月22日 | 标签: , , ,

有时内网的一些服务只能通过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>

相关文章:

  1. 反向代理(Reverse Proxy)带来的主机名端口问题及解决
  2. Picasaweb的反向代理访问
  3. 反正代理的内容过滤变换
  4. 如何对压缩网页通过反向代理做内容变换
  5. 用nginx做反向代理来访问防外链图片
目前还没有任何评论.