nginx 作反向代理,配置外網映射後重定向端口變了
route [非80] - nginx[80]- tomcat
外網訪問地址爲http://xxx:9090/重定向後網頁訪問http://xxx/
解決方法:`nginx
location /app/{tomcat
proxy_pass http://tomcat/app/; proxy_set_header Host $host:[外部端口]; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; client_max_body_size 500m; }
繼續更新...app