速率限制配置在 nginx 中不起作用

速率限制配置在 nginx 中不起作用

我正在尝试对以 /api/ 为前缀的 URL 的任何调用进行速率限制,我已经使用附加的配置配置了速率限制,但在使用 Axios 进行测试时没有看到任何限制。

limit_req_zone $binary_remote_addr zone=mylimit:10m rate=1r/s;
server {
    server_name gmmff.test;
    root /home/angel/wdev/laravel/gmf/public;

    add_header X-Frame-Options "SAMEORIGIN";
    add_header X-Content-Type-Options "nosniff";

    error_log /var/log/nginx/gmf.log warn;
    access_log /var/log/nginx/gmf-access.log;
    index index.php;

    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location /api/ {
        limit_req zone=mylimit;
        rewrite ^/api/(.*)$ /index.php?$query_string;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    error_page 404 /index.php;

    location ~ \.php$ {
        fastcgi_pass unix:/var/run/php/php8.0-fpm.sock;
        fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
        include fastcgi_params;
    }

    location ~ /\.(?!well-known).* {
        deny all;
    }

}

答案1

以 开头的 URI/api/将被重写为/index.php,并且limit_req在处理后一个 URI 时,该指令不再在范围内。

选项 1) 您可以处理块index.php内的文件location /api/

例如:

location /api/ {
    limit_req zone=mylimit;
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $realpath_root/index.php;
    fastcgi_pass unix:/var/run/php/php8.0-fpm.sock;
}

只需指向SCRIPT_FILENAME的位置即可index.php


选项 2)移动limit_req指令,使其始终在范围内,但通过使用map指令操作“key”变量来有效地打开和关闭它。

例如:

map $request_uri $token {
    ~^/api/    $binary_remote_addr;
    default    '';
}
limit_req_zone $token zone=mylimit:10m rate=1r/s;

server {
    ...
    limit_req zone=mylimit;
    ...
}

文档

键值为空的请求不予考虑。

相关内容