nginx人士可能会在这里提供更多帮助。
我基本上有x.x.x.x:8081/bundle-login.js
的资源。我正在使用proxy_pass
。我想将/Account/Login
重定向到x.x.x.x:8081/
。我还尝试配置8081
以使其资源位于x.x.x.x:8081/Account/Login/bundle-login.js
。让200
直接访问它们。
通过bundle-login.js
的代理获取404。索引出现了,没问题。怀疑通过代理index.html
给出了200
,但是对于应该在完全相同的目录中,对于404
我得到了bundle-config
。
location /Account/Login {
proxy_pass http://10.0.2.2:8081/;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
location ~ \.css {
add_header Content-Type text/css;
}
}