51,412
社区成员
发帖
与我相关
我的任务
分享server{
listen 80;
client_max_body_size 10000m;
server_name sh.xxxxxx.com;
root /apache-tomcat-7.0.69/webapps/chi;
index main.html main/main.html main/index.jsp index/html login.html;
charset utf-8;
location / {
#匹配以jsp,jspx和ation结尾的动态跳转
index index.jsp;
proxy_pass http://localhost:7080/chi/;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}