2 つのシステムを使用しています (どちらも Nginx ロード バランサーで、1 つはバックアップとして機能します)。
HTTP カスタム ヘッダーをいくつか追加して使用したいと考えています。
以下は両方の私のコードです。
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
}
どうすればそれを達成できますか?