D
Size: a a a
D
S
location /scj {
if ($limit_bots = 1) { return 403; }
if ($limit_bots !~* "1") { include /etc/nginx/php.conf; }
}
location /scj {
if ($limit_bots = 1) { return 403; }
if ($limit_bots !~* "1") { access_log /var/log/nginx/php_log;
fastcgi_pass unix:/var/run/sites.sock;
include fastcgi.conf;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name; }
}
Vs
S
location /scj/ {
if ($limit_bots = 1) { return 403; }
}
location ~* /scj/(.*)\.php$ {
if ($limit_bots = 1) { return 403; }
fastcgi_pass unix:/var/run/sites.sock;
include fastcgi.conf;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
}
AY
AN
AN
D
AN