我在 tomcat 8 前面有带 ssl 的 nginx,而 moqui 在 tomcat 内部。
moqui conf文件中的webapp部分是
<webapp name="webroot" http-port="" https-enabled="false">
<root-screen host=".*" location="component://webroot/screen/webroot.xml"/>
</webapp>
ssl 标头的 nginx conf
proxy_set_header Accept-Encoding "";
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://localhost:8080/;
proxy_http_version 1.1;
Tomcat 添加 RemoteIpValve
<Valve className="org.apache.catalina.valves.RemoteIpValve"
internalProxies="192\.168\.1\.14|127\.0\.0\.1"
remoteIpHeader="x-forwarded-for"
remoteIpProxiesHeader="x-forwarded-by"
protocolHeader="x-forwarded-proto"
/>
这应该适用于 tomcat (moqui) 拥有所有资源的 https:// 地址。
但是我在地址上得到了一个奇怪的模式。每 3 次刷新一个页面(例如登录),我得到一次正确的 https:// 地址,另外两次得到 http://。如果我刷新页面的速度非常快,那么模式会发生变化,使用 http:// 一到两次,然后使用 https:// 进行一次。当它是https://页面并且页面上的链接也是https时,点击页面上的链接时会转到http。
我用 moqui 1.6.2 运行 nginx 1.8.0 和 tomcat 8。不知道有没有人也遇到这个问题。我不知道是 nginx 和 tomcat 的问题,还是 moqui 的问题。非常感谢任何想法。