From b56fb8bc40fcf841f9cb1ebafb5283daec00e47e Mon Sep 17 00:00:00 2001 From: Ernst Widerberg Date: Wed, 10 Nov 2021 16:22:39 +0100 Subject: Add auth-server-poc --- auth-server-poc/config/nginx.conf | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 auth-server-poc/config/nginx.conf (limited to 'auth-server-poc/config/nginx.conf') diff --git a/auth-server-poc/config/nginx.conf b/auth-server-poc/config/nginx.conf new file mode 100644 index 0000000..6b17bd0 --- /dev/null +++ b/auth-server-poc/config/nginx.conf @@ -0,0 +1,23 @@ +user www-data; +worker_processes auto; +pid /tmp/nginx.pid; +include /etc/nginx/modules-enabled/*.conf; + +events { + worker_connections 768; +} + +http { + sendfile on; + tcp_nopush on; + tcp_nodelay on; + keepalive_timeout 65; + types_hash_max_size 2048; + include /etc/nginx/mime.types; + default_type application/octet-stream; + access_log /var/log/nginx/access.log; + error_log /var/log/nginx/error.log; + gzip on; + include /etc/nginx/conf.d/*.conf; + include /etc/nginx/sites-enabled/*; +} -- cgit v1.1