带 SSL 的 IIS 7 反向代理?
哪个 IIS 7 ISAPI 过滤器可以帮助我做到这一点:
http://site1.domain1.com:80 ==>内部 IIS 服务器 1(HTTP、TCP 80)
https://site2.domain1.com:443 = =>内部 IIS 服务器 1(HTTPS、TCP 443)
http://site1.domain2.com:80 = =>内部 IIS 服务器 2(HTTP、TCP 80)
http://site2.domain2.com:443 = =>内部 IIS 服务器 2(HTTPS、TCP 443)
http://site1.domain3.com:80 = =>内部 IIS 服务器 2(HTTP、TCP 8080)
http://site2.domain3.com:443 = =>内部 IIS 服务器 2(HTTPS、TCP 8443)
Which IIS 7 ISAPI Filter can help me doing that :
http://site1.domain1.com:80 ==> Internal IIS Server 1 (HTTP, TCP 80)
https://site2.domain1.com:443 ==> Internal IIS Server 1 (HTTPS, TCP 443)
http://site1.domain2.com:80 ==> Internal IIS Server 2 (HTTP, TCP 80)
http://site2.domain2.com:443 ==> Internal IIS Server 2 (HTTPS, TCP 443)
http://site1.domain3.com:80 ==> Internal IIS Server 2 (HTTP, TCP 8080)
http://site2.domain3.com:443 ==> Internal IIS Server 2 (HTTPS, TCP 8443)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 URL 重写模块 2 和应用程序请求路由模块 (ARR) 通过 IIS 7 创建反向代理。
我自己没有尝试过,但以下链接应该能够解决您的问题:
具有 URL 重写 v2 和应用程序请求路由的反向代理
You can create a Reverse Proxy with IIS 7 using the URL Rewrite Module 2 and the Application Request Routing Module (ARR).
I didn't try it myself but the following link should be able to solve your problem:
Reverse Proxy with URL Rewrite v2 and Application Request Routing