2018-02-08 22:56:44 +01:00
|
|
|
error_log stderr;
|
2018-08-13 16:30:27 +02:00
|
|
|
|
2018-02-08 22:56:44 +01:00
|
|
|
events {
|
|
|
|
worker_connections 1024;
|
|
|
|
}
|
2018-08-13 16:30:27 +02:00
|
|
|
|
2018-02-08 22:56:44 +01:00
|
|
|
http {
|
|
|
|
client_body_temp_path /tmp/client_body_temp;
|
2018-08-13 16:30:27 +02:00
|
|
|
fastcgi_temp_path /tmp/fastcgi_temp;
|
|
|
|
proxy_temp_path /tmp/proxy_temp;
|
|
|
|
scgi_temp_path /tmp/scgi_temp;
|
|
|
|
uwsgi_temp_path /tmp/uwsgi_temp;
|
|
|
|
|
2021-01-03 01:47:39 +01:00
|
|
|
fastcgi_buffers 16 16k;
|
|
|
|
fastcgi_buffer_size 32k;
|
|
|
|
|
2018-08-13 16:30:27 +02:00
|
|
|
map $http_x_forwarded_proto $forwarded_proto {
|
|
|
|
default $http_x_forwarded_proto;
|
|
|
|
https https;
|
|
|
|
}
|
|
|
|
|
2018-02-08 22:56:44 +01:00
|
|
|
server {
|
2018-08-13 16:30:27 +02:00
|
|
|
include mime.types;
|
|
|
|
access_log off;
|
|
|
|
listen [::]:80 ipv6only=off;
|
|
|
|
proxy_redirect off;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Proto $forwarded_proto;
|
|
|
|
index index.php;
|
2018-08-20 23:21:02 +02:00
|
|
|
root /var/www/public;
|
2018-08-13 16:30:27 +02:00
|
|
|
|
2018-02-08 22:56:44 +01:00
|
|
|
location / {
|
2018-02-11 19:21:40 +01:00
|
|
|
try_files $uri $uri/ /index.php?$args;
|
2018-02-08 22:56:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
location ~ \.php$ {
|
2022-04-20 00:07:09 +02:00
|
|
|
fastcgi_pass localhost:9000;
|
2018-02-08 22:56:44 +01:00
|
|
|
fastcgi_index index.php;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
2018-08-13 16:30:27 +02:00
|
|
|
include fastcgi_params;
|
2018-02-08 22:56:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|