if ($request_method != "POST"){
rewrite ^/(.*)\/$ /$1 permanent;
}
location / {
try_files $uri $uri/ /index.php?$args;
allow 127.0.0.1;
allow 192.168.0.11
deny all;
error_page 403 = @403;
}
location @403 {
keepalive_timeout 0;
return 503;
}