如何通过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 (engine x) 是一个高性能的HTTP和反向代理服务,也是一...
本地项目配置 1 复制 luffy/settings/dev.py为prop.py 修改l...
nginx不仅可以隐藏版本信息,还支持自定义web服务器信息 先看...
一 、此次漏洞分析 1 nginx HTTP/2漏洞 [nginx-announce] ng...
###进入nginx 目录cd /usr/local/nginx###递归显示 2 级目录...
在cmd命令窗口输入下面命令进行查看 tasklist /fi "ima...