10 lines
335 B
Text
10 lines
335 B
Text
|
# Basic PHP configuration
|
||
|
location ~ \.php$ {
|
||
|
limit_req zone=php burst=20 nodelay;
|
||
|
try_files $uri =404;
|
||
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||
|
fastcgi_pass unix:/var/run/php/php-fpm.sock;
|
||
|
fastcgi_index index.php;
|
||
|
include fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||
|
}
|