engelsystem/contrib/nginx/nginx.conf

36 lines
865 B
Nginx Configuration File
Raw Normal View History

2018-02-08 22:56:44 +01:00
error_log stderr;
events {
worker_connections 1024;
}
http {
client_body_temp_path /tmp/client_body_temp;
fastcgi_temp_path /tmp/fastcgi_temp;
proxy_temp_path /tmp/proxy_temp;
scgi_temp_path /tmp/scgi_temp;
uwsgi_temp_path /tmp/uwsgi_temp;
server {
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;
index index.php;
root /var/www/html;
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$ {
fastcgi_pass engelsystem:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
2018-02-11 20:14:35 +01:00
fastcgi_param HTTPS on;
2018-02-08 22:56:44 +01:00
include fastcgi_params;
}
}
}