gpt4 book ai didi

proxy - 使用 nginx 将请求重定向到 CDN

转载 作者:行者123 更新时间:2023-12-04 11:58:48 26 4
gpt4 key购买 nike

我有几个服务器地址,例如 cdn1.website.com、cdn2.website.com、cdn3.website.com。他们每个人都拥有相似的文件。

请求到达我的服务器,我想将其重定向或重写到随机 CDN 服务器。
是否可以 ?

最佳答案

您可以尝试使用 split clients模块:

http {

# Split clients (approximately) equally based on
# client ip address
split_clients $remote_addr $cdn_host {
33% cdn1;
33% cdn2;
- cdn3;
}

server {
server_name example.com;

# Use the variable defined by the split_clients block to determine
# the rewritten hostname for requests beginning with /images/
location /images/ {
rewrite ^ http://$cdn_host.example.com$request_uri? permanent;
}
}
}

关于proxy - 使用 nginx 将请求重定向到 CDN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7556003/

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