nginx 防火墙问题
描述一下问题
公网 112.224.252.123
内网 172.16.0.11
公网通过端口5700映射到内网的80端口
nginx 监听 80端口
nginx 反向代理到 tomcat的8080端口 配置如下
location / {
proxy_pass http://172.16.0.11:8080;
}
问题是
在我电脑上访问公网 http://112.224.252.123:5700 不能正常代理到tomcat应用 用火狐看他代理到了
http://112.224.252.123:8080 请问这是什么原因
------解决方案--------------------
请看tomcat的access log、