nginx_upstream_check_module
nginx_upstream_check_module copied to clipboard
For http protocol. Health checks upstreams for nginx,support dynamic health check interface for adding servers, transplat from tengine based on upstream_check_module
我想要安装这个扩展 [root@master nginx-1.19.6]# ./configure --prefix=/usr/local/nginx --add-module=/opt/nginx-1.19.6/nginx-upsync-module --add-module=/opt/nginx-1.19.6/nginx_upstream_check_module 执行此条命令后:  该如何解决
请问支持OpenResty1.21.4.1吗?如果现在不支持,后期会考虑支持吗?和https://github.com/weibocom/nginx-upsync-module是否会兼容呢
Hello, when does this module support nginx-1.14.0?
If a server in upstream has a “down” tag, we should honor it and directly mark it as “down” and skip the health check. Currently the module still checks it...
Moving https://github.com/weibocom/nginx-upsync-module/issues/157 here. When cpu is high, other requests still work but slower. Will that affect the check timer? If I have check timeout to be 5s, when cpu is...
编译版本 nginx-2a0a77b5fa3a(nginx-1.18.0) 编译环境 win10,vs2022,strawberry-perl-5.32.1.1-64bit 编译路径 /objs/lib ├─nginx-upsync-module-2.1.3 ├─nginx_upstream_check_module-0.4.0 ├─openssl-1.1.1v ├─pcre-8.45 └─zlib-1.2.13 我在nmake编译中遇到 cl -c -O2 -W4 -nologo -MT -Zi -Fdobjs/nginx.pdb -DFD_SETSIZE=1024 -DNO_SYS_TYPES_H -Yungx_config.h -Fpobjs/ngx_config.pch -I src/core -I src/event -I src/event/modules...
upstream up1 { server 10.2.1.149:80 weight=10 max_fails=10 fail_timeout=6s; server 10.2.1.153:80 weight=10 max_fails=10 fail_timeout=6s; server 10.3.1.149:80 weight=10 max_fails=10 fail_timeout=6s; server 10.3.1.153:80 weight=10 max_fails=10 fail_timeout=6s backup; keepalive 128; check_keepalive_requests 1000; check default_down=false...