diff options
author | Ernst Widerberg <ernst@sunet.se> | 2021-11-10 16:22:39 +0100 |
---|---|---|
committer | Ernst Widerberg <ernst@sunet.se> | 2021-11-10 16:22:39 +0100 |
commit | b56fb8bc40fcf841f9cb1ebafb5283daec00e47e (patch) | |
tree | a094e60c1e70d9d3faba459d4ce49f6ee6d88a3b /auth-server-poc/config/nginx.conf | |
parent | b80133312330f8f060a78debc635587b88f2367c (diff) |
Add auth-server-poc
Diffstat (limited to 'auth-server-poc/config/nginx.conf')
-rw-r--r-- | auth-server-poc/config/nginx.conf | 23 |
1 files changed, 23 insertions, 0 deletions
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/*; +} |