location /sxwd/ {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:8090/;
}
访问localhost/sxwd/xxxx时 会代理到 127.0.0.1:8090/xxxx
就相当于先完全匹配sxwd再将sxwd后的路径拼接到proxy_pass 的路径后
访问location/sxwd/image代理后变成127.0.0.1:8090/image
如果proxy_pass 后的url路径最后无 / 并且location后的 路径类似与 /xxxx 而不是/xxxx/ 那么会将路径
location 后先进行/xxxx匹配 并将/xxxx 后面的内容拼接至 proxy_pass后
//todo
location / {
root /usr/local/app/hr/dist;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}