gpt4 book ai didi

nginx - 使用 nginx 设置动态上游

转载 作者:行者123 更新时间:2023-12-02 17:35:45 24 4
gpt4 key购买 nike

假设我必须上游源

upstream first {
}

upstream second {
}

然后在服务器 block

map $geoip_country_code $is_china {
default no;
CN yes;
}

我想要实现的是如果$is_china,使用不同的上游

proxy_pass http://$preferred_host/;

我不知道如何使用 nginx 来做到这一点。

最佳答案

map 可能就足够了。您尝试过以下方法吗?

map $geoip_country_code $preferred_host {
default first;
CN second;
}

关于nginx - 使用 nginx 设置动态上游,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36710415/

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