我有一个显示图像的脚本,我正尝试从 limit_req 中排除以下 php 路由
rewrite ^/([^\@]*)\@(\d+x\d+)$ /index.php?route=image&action=show&path=$1&size=$2 break;
我有
location ~ .php$ {
limit_req zone=req_limit_per_ip burst=3 nodelay;
limit_conn conn_limit_per_ip 3;
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.1-fpm.sock;
}
对于我使用的图像和其他文件格式
location ~* ^.+.(jpg|jpeg|gif|png|svg|ico|css|less|xml|html?|swf|js|ttf)$ {
expires 10y;
}
那么如何从 nginx 配置中的 limit_req 中排除路由(index.php?route=image)?