post请求失败failed The system cannot find the path specified
post请求失败failed The system cannot find the path specified
背景
拆分项目,在nginx服务器新增一个项目,vue-springboot架构。
问题描述
server {
listen 91;
server_name localhost;
location / {
root hzbzz;
index index.html index.htm;
}
}
如上配置好nginx静态路径,localhost:91页面可以打开,但是却登录不上,打开f12发现login请求出问题了:
[error] 4836#2240: *128768 CreateFile() "./hzbzz/ls/uuu/login" failed (3: The system cannot find the path specified), client: 127.0.0.1, server: localhost, request: "POST /ls/uuu/login HTTP/1.1", host: "localhost:91", referrer: "http://localhost:91/login"
原因分析
感觉像是post转发请求,路径匹配出了问题,从另外可用的主机配置中找到这么一段:
location /ls/uuu {
proxy_pass http://api_server;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
}
解决方案
把location添加到主机配置中:
server {
listen 91;
server_name localhost;
location / {
root hzbzz;
index index.html index.htm;
}
location /ls/uuu {
proxy_pass http://api_server;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
成功登陆。
声明:本文使用八爪鱼rpa工具从gitee自动搬运本人原创(或摘录,会备注出处)博客,如版式错乱请评论私信,如情况紧急或久未回复请致邮 xkm.0jiejie0@qq.com 并备注原委;引用本人笔记的链接正常情况下均可访问,如打不开请查看该链接末尾的笔记标题(右击链接文本,点击 复制链接地址,在文本编辑工具粘贴查看,也可在搜索框粘贴后直接编辑然后搜索),在本人博客手动搜索该标题即可;如遇任何问题,或有更佳方案,欢迎与我沟通!