refactor: update project config files

This commit is contained in:
Michel Jonathan Schmitz
2020-11-03 12:29:41 +01:00
committed by Rainer Killinger
parent 30a2d3dcf4
commit 9512bca329
6 changed files with 115 additions and 27 deletions

View File

@@ -1,26 +1,26 @@
worker_processes 1;
error_log stderr;
pid nginx.pid;
daemon off;
pid nginx.pid;
daemon off;
events {
worker_connections 1024;
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
access_log /dev/stdout;
include mime.types;
default_type application/octet-stream;
access_log /dev/stdout;
proxy_temp_path /tmp/proxy;
client_body_temp_path /tmp/body;
fastcgi_temp_path /tmp/fastcgi;
proxy_temp_path /tmp/proxy;
client_body_temp_path /tmp/body;
fastcgi_temp_path /tmp/fastcgi;
sendfile on;
#tcp_nopush on;
gzip on;
keepalive_timeout 65;
include /etc/nginx/conf.d/*;
sendfile on;
# tcp_nopush on;
gzip on;
keepalive_timeout 65;
include /etc/nginx/conf.d/*;
}