译序:截至发稿时止,官方最新 ngx_http_upstream_module 指令详述。官方随时在更新,请及时关注官网最新公布。以下是官方原文。 ngx_http_upstream_module 模块用于定义可以被 proxy_pass、 fastcgi_pass 以及 memcached_pass 等指令引用的服务器群...
session_sticky_hide_cookie upstream=test; proxy_pass http://test; } } 指令 语法:session_sticky[cookie=name] [domain=your_domain] [path=your_path] [maxage=time] [mode=insert|rewrite|prefix] [option=indirect] [maxidle=time] [maxlife=time] [fallback=on|off] [hash=plain|md5]默认值:se...
Syntax:check_http_sendhttp_packetDefault:"GET / HTTP/1.0\r\n\r\n"Context:upstream 该指令可以配置http健康检查包发送的请求内容。为了减少传输数据量,推荐采用"HEAD"方法。 当采用长连接进行健康检查时,需在该指令中添加keep-alive请求头,如:"HEAD / HTTP/1.1\r\nConnection: keep-alive\r\n\r\n"。
ngx_http_upstream_module 模块用于定义可以被proxy_pass、fastcgi_pass以及memcached_pass等指令引用的服务器群。 配置示例 upstream backend { server backend1.example.com weight=5; server backend2.example.com:8080; server unix:/tmp/backend3; server backup1.example.com:8080 backup; server backup2.example...