1、因为我们需要二级目录代理表一个spring boot ,格式非常重要 比如CeShiHuoDong 里 proxy_pass 的 http://localhost:7020/ 一定是7020/ 而不能用http://localhost:7020 不然会404
server {
listen 7010;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
proxy_pass http://localhost:7011;
}
location /CeShiHuoDong {
root html;
index index.html index.htm;
proxy_pass http://localhost:7020/;
}
}
2、当用nginx 二级目录 反向代理 spring boot 会导致CSS 和 js 文件找不到
毕竟 现在谁 /CeShiHuoDong 指向了http://localhost:7020/ 相当于
http://localhost:7011/CeShiHuoDong 等于