我让 iis 使用 isapi_redirect 将 http 流量重定向到 tomcat 服务器。我需要让它与 ssl 配合使用,我该怎么做?
如果我使用 iis 启用 ssl 并尝试转到https://domain/page.html
(静态页面),则一切都正常工作,但是当我转到https://domain/app
(设置 isapi_redirect)时,我收到 401.5 状态代码(ISAPI/CGI 应用程序授权失败。)
我的workers.properties.minimal文件:
worker.worker1.type=ajp13
worker.worker1.host=localhost
worker.worker1.port=8011
tomcat server.xml 包含:
<Connector port="8011" redirectPort="8443" enableLookups="false" protocol="AJP/1.3" URIEncoding="UTF-8"/>