我有一个脚本,显示图像,我试图从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; }
所以如何从nginxconfiguration中的limit_req中排除路由(index.php?route = image)?