nginx 没有调用我的 tomcat 应用程序。
Tomcat App 在以下位置运行良好:http://localhost:8080/web/
Nginx 网址:http://localhost/web
nginx配置:
location /web {
proxy_pass http://localhost:8080/web;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}