Files
openstapps/nginx.conf
Anselm Stordeur fbe1a65cd1 feat: add proxy
2021-04-27 15:23:41 +02:00

30 lines
459 B
Nginx Configuration File

worker_processes 1;
error_log stderr;
pid nginx.pid;
daemon off;
events {
worker_connections 1024;
}
http {
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;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
gzip on;
include /etc/nginx/conf.d/*;
}