├── .gitignore ├── LICENSE ├── README.md ├── config ├── nginx-1.4.7.patch ├── nginx-1.6.2.patch ├── nginx_upstream_fair.patch ├── nginx_upstream_hash.patch └── ngx_http_upstream_check_module.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysulq/nginx_upstream_check_module/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysulq/nginx_upstream_check_module/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysulq/nginx_upstream_check_module/HEAD/README.md -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysulq/nginx_upstream_check_module/HEAD/config -------------------------------------------------------------------------------- /nginx-1.4.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysulq/nginx_upstream_check_module/HEAD/nginx-1.4.7.patch -------------------------------------------------------------------------------- /nginx-1.6.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysulq/nginx_upstream_check_module/HEAD/nginx-1.6.2.patch -------------------------------------------------------------------------------- /nginx_upstream_fair.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysulq/nginx_upstream_check_module/HEAD/nginx_upstream_fair.patch -------------------------------------------------------------------------------- /nginx_upstream_hash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysulq/nginx_upstream_check_module/HEAD/nginx_upstream_hash.patch -------------------------------------------------------------------------------- /ngx_http_upstream_check_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysulq/nginx_upstream_check_module/HEAD/ngx_http_upstream_check_module.c --------------------------------------------------------------------------------