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客戶端請求設定項有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!