12 lines
382 B
Text
12 lines
382 B
Text
index index.php index.html;
|
|
|
|
location ~ \.php$ {
|
|
fastcgi_pass unix:/var/run/php-fpm.sock;
|
|
fastcgi_index index.php;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_buffers 256 128k;
|
|
fastcgi_connect_timeout 300s;
|
|
fastcgi_send_timeout 300s;
|
|
fastcgi_read_timeout 300s;
|
|
include fastcgi_params;
|
|
}
|