Nginx-反向代理位置指定后的所有内容

时间:2019-10-18 13:54:28

标签: nginx reverse-proxy

我正在尝试使用nginx反向代理特定的位置规范,如下所示:

server {
    listen 80;
    server_name example.com;

    location /example {
        proxy_pass http://localhost:8080/test;
    }
}

现在,当我尝试访问http://example.com/example/css/styles.css处的资源时,我希望它尝试访问http://localhost:8080/test/css/styles.css。但是可惜-我从nginx那里得到了404。

当我尝试访问http://example.com/example时,它显示了http://localhost:8080/test上的内容(因此我知道基本url段正在运行)减去从相对url导入到该页面中的所有内容(例如样式和JS)文件)

如何获取反向代理以使用子网址段?

0 个答案:

没有答案