NGINX 反向代理子文件夹 URI 路径问题

NGINX 反向代理子文件夹 URI 路径问题

我已实施 NGINX 反向代理来访问后端 Web 服务。请注意,Web 服务托管在不同的服务器上,而不是 NGINX 服务器上。Web 服务访问 URLhttp://10.2.4.5/abcd/

我的 Nginx 配置是

server {
    listen       80;
    server_name  10.2.4.5, localhost;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location /{

    
    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://10.2.4.5/abcd/;

        root   html;
        index  index.html index.htm;
    }

}

当我尝试通过 NGINX 访问网页时,页面无法正确加载。图像无法加载。我尝试删除/proxy_pass 指令中 URI 路径末尾的。但问题仍未解决。我该如何修复此问题?

相关内容