gpt4 book ai didi

http - 在 nginx 中添加和使用 header (HTTP)

转载 作者:可可西里 更新时间:2023-11-01 15:04:08 25 4
gpt4 key购买 nike

<分区>

我正在使用两个系统(都是 Nginx 负载均衡器,一个作为备份)。

我想添加和使用一些 HTTP 自定义 header 。

下面是我的代码:

upstream upstream0 {
#list of upstream servers
server backend:80;
server backup_load_balancer:777 backup;
#healthcheck
}

server {
listen 80;
#Add custom header about the port and protocol (http or https)
server_name _;

location / {
# is included since links are not allowed in the post
proxy_pass "http://upstream0;"
}
}

备份系统

server {
listen 777;
server_name _;
#doing some other extra stuff
#use port and protocol to direct
}

我怎样才能做到这一点?

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