IIS7 Application Request Routing HTTPS

后端 未结 1 1216
遥遥无期
遥遥无期 2021-01-20 04:57

I have a reverse proxy that routes traffic to my app server..

I have login feature on my public website that is served through HTTPS. The SSL certificates are instal

相关标签:
1条回答
  • 2021-01-20 05:30

    Some applications are programmed to detect whether or not you are using HTTPS and since the actual web server is handling an HTTP request with your offloading enabled, it will think the request is not secure and often end up in a redirect loop.

    You can fix this by setting up a single wildcard certificate on each content server and disable ssl offloading.

    [ARR01 - ssl certificate] - [ARR02 - ssl certificate] <-- Visitors will see this SSL Certificate in their browser
    |---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
    [Content01 - wildcard ssl certificate] - [Content02 - wildcard ssl certificate] <-- This certificate remains hidden and thus can be a shared single wildcard cert.

    0 讨论(0)
提交回复
热议问题