Nginx模組參考手冊:HTTP Limit Zone模組(HTTP Limit Zone)

來源:互聯網
上載者:User
關鍵字 HTTP nginx Zone模組

這些模組預設會全部編譯進Nginx,除非手工指定某個模組在configure時排除。

這個模組可以為一個位址指定的會話或者某些特殊情況限制同時連接數,
如下例:

HTTP { limit_zone one $binary_remote_addr 10m; server { location /download/ { limit_conn one 1; } }}

指令

limit_zone

語法:limit_zone zone_HTTP://www.aliyun.com/zixun/aggregation/11696.html">name $variable memory_max_size
預設值:no
使用欄位:HTTP
指令描述會話狀態存儲區域。
會話的數目按照指定的變數來決定,它依賴于使用的變數大小和memory_max_size的值。
如下例:

limit_zone one $binary_remote_addr 10m;

用戶端的位址將用於會話,注意$binary_remote_addr變數將替換$remote_addr而被使用。
$remote_addr 變數的值的長度可以是7到15位元組,因此大小指定為32或64位元組。
$binary_remote_addr 變數的值的長度總是4位元組,大小總是32位元組。
當會話狀態儲存區域為1M時理論上可以處理32000個會話,每個會話大小為32位元組。

limit_conn

語法:limit_conn zone_name max_clients_per_ip
預設值:no
使用欄位:HTTP, server, location
指令指定一個會話的最大同時連接數,超過這個數位的請求將被返回」Service unavailable」 (503)代碼。
如下例:

limit_zone one $binary_remote_addr 10m; server { location /download/ { limit_conn one 1;}

這將指定一個位址只能同時存在一個連接。

limit_conn_log_level

語法: limit_conn_log_level info | notice | warn | error
預設值: error
使用欄位: HTTP, server, location
當達到最大連接數後記錄日誌的等級。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.