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;
|
|
|
|
|
2016-11-01 00:50:30 +01:00
|
|
|
server_name laradock;
|
|
|
|
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-01-27 09:31:46 +01:00
|
|
|
fastcgi_buffers 16 16k;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2016-05-06 16:04:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
|