我在将 NGINX 设置为反向代理时遇到了问题,使用 proxy_pass 访问 IIS 托管的网站。Web 应用程序的 index.html 加载没有问题,但 HTML 页面具有静态 css 和 js 文件的相对 URL,例如:'/assets/index-d526a0c5.css'
然后,NGINX 尝试在“C:\nginx/html/assets/index-d526a0c5.css”上查找这些文件,这很有意义。我当然可以将 URL 更改为绝对路径,但我更愿意保留相对路径。这是我的配置:
server {
listen 80;
listen [::]:80;
server_name _;
# Redirect all HTTP requests to HTTPS with a 301 Moved Permanently response.
return 301 https://$host$request_uri;
}
# HTTPS server
#
server {
listen 443 ssl;
server_name _;
...
underscores_in_headers on;
port_in_redirect off;
location /webapp/ {
proxy_pass http://127.0.0.1:8080/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
我收到的错误是:
[错误] 7184#11204:*1 CreateFile()“C:\nginx/html/assets/index-d526a0c5.css”失败(3:系统找不到指定的路径),客户端:,服务器:_,请求:“GET /assets/index-d526a0c5.css HTTP/1.1”,主机:“internal.host.com”,引用:“https://internal.host.com/webapp/”
我使用 sub_filters 让它工作,但我不确定这是否是最好的解决方案:
location /webapp/ {
proxy_pass http://127.0.0.1:8080/;
...
sub_filter 'action="/' 'action="/webapp';
sub_filter 'href="/' 'href="/webapp/';
sub_filter 'src="/' 'src="/webapp/';
sub_filter_once off;
}
有没有更好的解决办法?