NGINX `limit_req` 不适用于索引文件的位置指令

NGINX `limit_req` 不适用于索引文件的位置指令

我正在尝试添加 nginx 位置指令limit_req,但它对我不起作用。

我有 2 个目标,我想在其中添加limit_req.

网站 API 路径 这是我的服务器配置文件。

server {
    server_name example.com; # managed by Certbot

        root /var/www/;
        index index.php index.html index.htm;

    location / {
                root /var/www/;
                index index.php;
                try_files $uri $uri/ /index.php?$args;
        }

location /example.com/{
                limit_req zone=mylimit;
                root /var/www/example.com/;
                index index.php?$args;
                try_files $uri $uri/ /example.com/index.php?$args;
        }
location /example.com/api/ {
                limit_req zone=mylimit burst=20 nodelay;
                root /var/www/example.com/api/;
                index index.php?$args;
                try_files $uri $uri/ /example.com/api/index.php?$args;
        }
}

当我尝试通过并行点击网站登录 URL 来测试上述设置时,limit_req 起作用了。但是,当我对 API 运行相同的测试时,它就不起作用了。

我所有的 API 都点击https://example.com/api/index.phpURL。有人可以帮忙吗?

我使用 siege 进行测试。

siege -b -r 1 -c 10 https://example.com/api/index.php

有人可以帮忙吗?

提前致谢。

相关内容