gpt4 book ai didi

proxy - 只有在服务器 A 上有 404 时,nginx 才能代理服务器 B

转载 作者:行者123 更新时间:2023-12-04 02:18:00 24 4
gpt4 key购买 nike

我正在尝试配置 nginx (0.7.65) 以便它代理到服务器 A,如果它得到 404 将尝试代理到服务器 B。

我尝试了以下方法,但不起作用。有任何想法吗?

    server {
error_log /tmp/nginx.error.log;
access_log /tmp/nginx.access.log;
listen 4433;
server_name localhost;

location / {
proxy_pass http://localhost:5984;
error_page 404 = @fallback;
}

location @fallback {
proxy_pass http://localhost:5983;
}
}

最佳答案

    proxy_intercept_errors on;

关于proxy - 只有在服务器 A 上有 404 时,nginx 才能代理服务器 B,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2917403/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com