gpt4 book ai didi

nginx - 通过套接字 Keepalived 与 Unicorn 的上游连接

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

Nginx 1.1.4+ 可以服务与 HTTP1.1 的上游连接 保活指令,参见 official documentation (这与 keepalived 客户端的连接不同)。因此 Unicorn 配置如下所示:

upstream unicorn {
server unix:/tmp/unicorn.todo.sock fail_timeout=0;
keepalive 4;
}

server {
try_files $uri/index.html $uri @unicorn;
keepalive_timeout 70;

location @unicorn {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://unicorn;

proxy_http_version 1.1;
proxy_set_header Connection "";
}
}

HTTP 连接需要这些 header : proxy_http_version proxy_set_header .

所以问题是配置有效还是套接字连接本身是永久性的?

最佳答案

是的,它是有效的。 UNIX 套接字和 TCP/IP 套接字在 HTTP Keepalive 方面没有区别。

关于nginx - 通过套接字 Keepalived 与 Unicorn 的上游连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11321790/

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