NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
### HWLoadbalancerCheckErrors Some Hardware Load-balancers such Cisco's CSS and BigIP Products test the readiness of the backend Machines with **SYN-ACK-RST**. This behavior causes a 400 error in nginx. With the [GEO Module](# "NginxHttpGeoModule") and the **if-Statement** you can omit these entries: ~~~ http { geo $lb { default 0; 10.1.1.1/32 1; # LB IPs 10.1.1.2/32 1; }   # ...   server { # ... access_log /path/to/log; error_page 400 /400;   location = /400 { if ($lb) { access_log off; } return 400; } } } ~~~