You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
504 B
23 lines
504 B
server {
|
|
listen {{ APP_PORT }} default_server;
|
|
|
|
root /var/www/{{APP_NAME}}/htdocs; # Check this
|
|
error_log /var/log/nginx/{{APP_NAME}}/error.log;
|
|
|
|
index index.php index.html index.htm;
|
|
charset utf-8;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php;
|
|
}
|
|
|
|
location ~ [^/]\.php(/|$) {
|
|
client_max_body_size 50M;
|
|
try_files $uri =404;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_read_timeout 600;
|
|
include fastcgi_params;
|
|
fastcgi_pass unix:/var/run/php/php{{PHP_VERSION}}-fpm.sock;
|
|
}
|
|
|
|
}
|