add limit connection status code
add default conn status code add missing colon add limit connection status code
This commit is contained in:
parent
b433108ead
commit
edd87fbae3
3 changed files with 12 additions and 0 deletions
|
|
@ -146,6 +146,7 @@ The following table shows a configuration option's name, type, and the default v
|
|||
|[http-redirect-code](#http-redirect-code)|int|308|
|
||||
|[proxy-buffering](#proxy-buffering)|string|"off"|
|
||||
|[limit-req-status-code](#limit-req-status-code)|int|503|
|
||||
|[limit-conn-status-code](#limit-conn-status-code)|int|503|
|
||||
|[no-tls-redirect-locations](#no-tls-redirect-locations)|string|"/.well-known/acme-challenge"|
|
||||
|[no-auth-locations](#no-auth-locations)|string|"/.well-known/acme-challenge"|
|
||||
|[block-cidrs](#block-cidrs)|[]string|""|
|
||||
|
|
@ -827,6 +828,10 @@ Enables or disables [buffering of responses from the proxied server](http://ngin
|
|||
|
||||
Sets the [status code to return in response to rejected requests](http://nginx.org/en/docs/http/ngx_http_limit_req_module.html#limit_req_status). _**default:**_ 503
|
||||
|
||||
## limit-conn-status-code
|
||||
|
||||
Sets the [status code to return in response to rejected connections](http://nginx.org/en/docs/http/ngx_http_limit_conn_module.html#limit_conn_status). _**default:**_ 503
|
||||
|
||||
## no-tls-redirect-locations
|
||||
|
||||
A comma-separated list of locations on which http requests will never get redirected to their https counterpart.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue