我目前在端口8080中设置了Apache Tomcat 7,我正在使用带有Let的加密SSL的NGINX作为反向代理。当前的配置就像一个魅力,但我需要一个能够在页面被视图使用SSL时传递给Tomcat。
我在文档中发现在server.xml文件中使用SSLValve应该可以解决问题,但我发现的示例是apache作为反向代理而不是NGINX。
有没有人完成此设置?
答案 0 :(得分:0)
假设您使用:8080作为http和https的后端:
server {
listen :80;
listen :443 defaultserver ssl;
...ssl directives....
location ~ / {
proxy_pass http://apache:8080;
}
NGINX配置可以为您的特定情况填写ssl指令部分 http://nginx.org/en/docs/http/configuring_https_servers.html