0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ngx_http_limit_req_moduleメモ

Posted at

nginxでrate limitをかけるめも

limit_req_status 503;
limit_req_zone  $binary_remote_addr  zone=minutely:10m  rate=100r/m;

server {
    location / {
    limit_req zone=minutely burst=10 nodelay;
    }
}

ngx_http_limit_req_module モジュール

ngx_http_limit_req_moduleに今度こそ入門する

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?