我有一个 NGINX 代理,我想将不同的文件夹重定向到不同的 Web 服务器。问题是本地服务器正在寻找图像、JS、API 等的绝对路径。我该如何设置重写规则或类似规则来缓解这个问题?
以下是我目前的服务器配置:
server {
listen 80;
listen [::]:80;
server_name sample.com;
root /var/www/html;
location / {
return 403;
}
location /path/ch2 {
proxy_pass_header Authorization;
proxy_pass http://10.1.1.50:8080;
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_http_version 1.1;
proxy_set_header Connection "";
proxy_buffering off;
client_max_body_size 0;
proxy_read_timeout 36000s;
proxy_redirect off;
}
}
答案1
我们最终使用 sub_filter
sub_filter "/path/" "/ch2/path/"; sub_filter_once 关闭;
sub_filter_types 应用程序/json 应用程序/x-javascript 应用程序/javascript;