summaryrefslogtreecommitdiff
path: root/auth-server-poc/config/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'auth-server-poc/config/nginx.conf')
-rw-r--r--auth-server-poc/config/nginx.conf23
1 files changed, 0 insertions, 23 deletions
diff --git a/auth-server-poc/config/nginx.conf b/auth-server-poc/config/nginx.conf
deleted file mode 100644
index 6b17bd0..0000000
--- a/auth-server-poc/config/nginx.conf
+++ /dev/null
@@ -1,23 +0,0 @@
-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/*;
-}