Nginx客户端请求配置项有哪些
Nginx客户端请求配置项有:1、“limit_except”,按HTTP方法名限制用户请求;2、“client_max_body_size size”,HTTP请求包体的最大值;3、“limit_rate speed”,对请求的限速等。
客户端请求配置
配置项 | 默认 | 用途 | 配置块 |
---|---|---|---|
limit_except method ...{...} | 按 HTTP 方法名限制用户请求 | location | |
client_max_body_size size; | 1m | HTTP 请求包体的最大值 | http、server、location |
limit_rate speed; | 0 | 对请求的限速 | http、server、location |
limit_rate_after time; | 1m | 发送响应长度超过1m后限速 | http、server、location |
推荐学习:《Nginx教程》
以上就是Nginx客户端请求配置项有哪些的详细内容,更多请关注https://www.sxiaw.com/其它相关文章!