2015-08-21 13:30:25 +02:00
|
|
|
server {
|
2016-08-15 23:14:05 +02:00
|
|
|
|
2016-11-01 00:50:30 +01:00
|
|
|
listen 80;
|
|
|
|
listen [::]:80;
|
2015-08-21 13:30:25 +02:00
|
|
|
|
2017-08-01 21:12:43 +02:00
|
|
|
server_name app.dev;
|
|
|
|
root /var/www/app;
|
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-03-17 01:53:14 +01:00
|
|
|
fastcgi_buffer_size 32k;
|
2015-08-21 13:30:25 +02:00
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
|
|
include fastcgi_params;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ /\.ht {
|
|
|
|
deny all;
|
|
|
|
}
|
2017-04-23 20:44:18 +02:00
|
|
|
|
2017-03-17 01:53:14 +01:00
|
|
|
location /.well-known/acme-challenge/ {
|
|
|
|
root /var/www/letsencrypt/;
|
|
|
|
log_not_found off;
|
|
|
|
}
|
2017-08-01 21:12:43 +02:00
|
|
|
|
|
|
|
error_log /var/log/nginx/app_error.log;
|
|
|
|
access_log /var/log/nginx/app_access.log;
|
2015-08-21 13:30:25 +02:00
|
|
|
}
|