我有一个运行在http:// localhost:8080的服务器,我希望该服务器的特定url由Nginx代理.
例如,我只希望将http:// localhost:8080 / test /(.*)反向代理到http:// localhost / test /(.*).
我正在将另一台服务器传播到http:// localhost /.
最佳答案
那只是一个简单的位置块呢?
原文链接:https://www.f2er.com/nginx/532421.htmlserver {
# ... 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
}
}