diff options
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/*; +} |