First commit
This commit is contained in:
commit
fdaacfc5a6
19 changed files with 919 additions and 0 deletions
12
nginx/includes/default-php.conf
Normal file
12
nginx/includes/default-php.conf
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue