没有参数的Nginx proxy_pass

前端之家收集整理的这篇文章主要介绍了没有参数的Nginx proxy_pass前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

http://mydomain.com/ => 127.0.0.1:4567

http://mydomain.com/FOO => 127.0.0.1:3000

那可能吗?

到目前为止,我有:

upstream myserver {
    server 127.0.0.1:4567;
    server 127.0.0.1:4568;
}

location / {
    proxy_pass http://myserver;
}

location /FOO/ {
    proxy_pass http://127.0.0.1:3000;
}

但是这指向了http://127.0.0.1:3000/FOO/,我想只传递/ FOO后的内容/

谢谢

最佳答案
好的问题很简单……

我在proxy_pass参数的末尾错过了一个/

location /FOO/ {
    proxy_pass http://127.0.0.1:3000/;
}
原文链接:https://www.f2er.com/nginx/434337.html

猜你在找的Nginx相关文章