作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 nginx (v1.6.2) 实现一个简单的速率限制系统
网站可用/mysite.com :
limit_req_zone $binary_remote_addr zone=myzone:10m rate=2r/m;
server {
listen 80;
server_name mysite.com;
root /var/www/vhosts/mysite.com;
error_log [..];
access_log [..];
include conf.d/php-fpm.conf;
location = / {
limit_req zone=myzone burst=3 nodelay;
index index.html;
}
location / {
try_files $uri =404;
}
location ^~ /pages {
include conf.d/php-fpm.conf;
internal;
}
location = /email {
rewrite ^(.*)$ /pages/email.html;
}
location = /email/subscribe {
limit_req zone=myzone burst=2 nodelay;
rewrite ^(.*)$ /pages/email.php?action=subscribe;
}
location ~ /api {
limit_req zone=myzone burst=5 nodelay;
rewrite ^(.*)$ /pages/api.php;
}
}
location ~ \.php$ {
if (!-f $document_root$fastcgi_script_name) {
return 404;
}
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
include fastcgi_params;
}
include sites-enabled/*;
/
工作正常。如果对此页面的请求过多,我会收到错误 503。
/email/subscribe
,
/api
也不是
/api/test
速度有限,我不知道为什么。它必须与
rewrite
做一些事情,但有什么问题呢?
最佳答案
问题是nginx进程请求在几个phases和重写阶段在预访问之前(这是应用 limit_req
的地方)。所以在你的配置请求被重写为 /pages/...
在他们有机会受到限制之前。为避免这种情况,您应该在重写后保持在相同的位置块(使用 break
标志)或使用 try_files
进行一些小技巧。 .
我更喜欢第一个选项,因此您的配置可能如下所示:
limit_req_zone $binary_remote_addr zone=myzone:10m rate=2r/m;
server {
listen 80;
server_name mysite.com;
root /var/www/vhosts/mysite.com;
error_log [..];
access_log [..];
include conf.d/php-fpm.conf;
location = / {
limit_req zone=myzone burst=3 nodelay;
index index.html;
}
location / {
try_files $uri =404;
}
location ^~ /pages {
include conf.d/php-fpm.conf;
internal;
}
location = /email {
rewrite ^(.*)$ /pages/email.html;
}
location = /email/subscribe {
limit_req zone=myzone burst=2 nodelay;
rewrite ^(.*)$ /pages/email.php?action=subscribe break;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /api {
limit_req zone=myzone burst=5 nodelay;
rewrite ^(.*)$ /pages/api.php break;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
如果你选择第二个选项,你的配置会更干净一点,但有点麻烦。我们将使用
try_files
的事实阶段在
limit_req
之后运行相和那
try_files
使内部重定向到它的最后一个参数。
limit_req_zone $binary_remote_addr zone=myzone:10m rate=2r/m;
server {
listen 80;
server_name mysite.com;
root /var/www/vhosts/mysite.com;
error_log [..];
access_log [..];
include conf.d/php-fpm.conf;
location = / {
limit_req zone=myzone burst=3 nodelay;
index index.html;
}
location / {
try_files $uri =404;
}
location ^~ /pages {
include conf.d/php-fpm.conf;
internal;
}
location = /email {
rewrite ^(.*)$ /pages/email.html;
}
location = /email/subscribe {
limit_req zone=myzone burst=2 nodelay;
try_files SOME_NONEXISTENT_FILE /pages/email.php?action=subscribe;
}
location ~ /api {
limit_req zone=myzone burst=5 nodelay;
try_files SOME_NONEXISTENT_FILE /pages/api.php;
}
}
关于nginx limit_req 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28414201/
我正在尝试使用 nginx (v1.6.2) 实现一个简单的速率限制系统 网站可用/mysite.com : limit_req_zone $binary_remote_addr zone=myzon
我在使用乘客/rails 对 nginx 进行速率限制时遇到了无穷无尽的麻烦。 部分混淆来自区分配置的哪些方面在每个客户端的基础上工作,哪些是全局限制。 我在考虑 nginx 的 limit_req
我实际上有点惊讶,经过几个小时的谷歌搜索后我找不到任何东西,但问题如下: 我希望 nginx 作为我 API 的 throttle 。 我的配置文件包含一个被广泛引用的 limit_req_zone
我是一名优秀的程序员,十分优秀!