系统相关
首页 > 系统相关> > 如何通过nginx反向代理特定的URL?

如何通过nginx反向代理特定的URL?

作者:互联网

我有一个运行在http:// localhost:8080的服务器,我希望该服务器的特定url由nginx代理.

例如,我只希望将http:// localhost:8080 / test /(.*)反向代理到http:// localhost / test /(.*).

我正在将另一台服务器传播到http:// localhost /.

解决方法:

那只是一个简单的位置块呢?

server {
    # ... other stuff

    location /test/ {
        try_files $uri @testproxy;
    }

    location @testproxy {
        proxy_pass http://127.0.0.1:8080;
        proxy_set_header X-Forwarded-Host $server_name;
        proxy_set_header X-Real-IP $remote_addr;
        # all your params
    }
}

标签:nginx,reverse-proxy
来源: https://codeday.me/bug/20191029/1961417.html