2015-08-21 13:30:25 +02:00
|
|
|
server {
|
2016-08-15 23:14:05 +02:00
|
|
|
|
2015-08-21 13:30:25 +02:00
|
|
|
listen 80 default_server;
|
|
|
|
listen [::]:80 default_server ipv6only=on;
|
|
|
|
|
2018-11-13 13:44:51 +01:00
|
|
|
# For https
|
|
|
|
# listen 443 ssl default_server;
|
|
|
|
# listen [::]:443 ssl default_server ipv6only=on;
|
|
|
|
# ssl_certificate /etc/nginx/ssl/default.crt;
|
|
|
|
# ssl_certificate_key /etc/nginx/ssl/default.key;
|
|
|
|
|
2017-04-22 21:10:43 +02:00
|
|
|
server_name localhost;
|
2017-05-01 12:36:31 +02:00
|
|
|
root /var/www/public;
|
2015-08-21 13:30:25 +02:00
|
|
|
index index.php index.html index.htm;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
try_files $uri $uri/ /index.php$is_args$args;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ \.php$ {
|
|
|
|
try_files $uri /index.php =404;
|
2016-05-06 16:04:02 +02:00
|
|
|
fastcgi_pass php-upstream;
|
2015-08-21 13:30:25 +02:00
|
|
|
fastcgi_index index.php;
|
2017-04-23 20:44:18 +02:00
|
|
|
fastcgi_buffers 16 16k;
|
2017-01-27 09:31:46 +01:00
|
|
|
fastcgi_buffer_size 32k;
|
2015-08-21 13:30:25 +02:00
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
2018-01-30 01:38:09 +01:00
|
|
|
#fixes timeouts
|
2018-01-30 01:31:48 +01:00
|
|
|
fastcgi_read_timeout 600;
|
2015-08-21 13:30:25 +02:00
|
|
|
include fastcgi_params;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ /\.ht {
|
|
|
|
deny all;
|
|
|
|
}
|
2017-04-23 20:44:18 +02:00
|
|
|
|
2016-10-15 16:40:22 +02:00
|
|
|
location /.well-known/acme-challenge/ {
|
|
|
|
root /var/www/letsencrypt/;
|
|
|
|
log_not_found off;
|
|
|
|
}
|
2015-08-21 13:30:25 +02:00
|
|
|
}
|