From a07cfd330c349273af343e82fb8581d6bcfc849e Mon Sep 17 00:00:00 2001 From: jfederico Date: Thu, 8 Apr 2021 14:38:03 -0400 Subject: cleaned up nginx --- data/proxy/nginx/nginx.conf | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 data/proxy/nginx/nginx.conf (limited to 'data/proxy/nginx/nginx.conf') diff --git a/data/proxy/nginx/nginx.conf b/data/proxy/nginx/nginx.conf deleted file mode 100644 index 981c619..0000000 --- a/data/proxy/nginx/nginx.conf +++ /dev/null @@ -1,37 +0,0 @@ -user nginx; -worker_processes 1; - -error_log /var/log/nginx/error.log warn; -pid /var/run/nginx.pid; - - -events { - worker_connections 1024; -} - - -http { - include /etc/nginx/mime.types; - default_type application/octet-stream; - - log_format main '$remote_addr - $remote_user [$time_local] "$request" ' - '$status $body_bytes_sent "$http_referer" ' - '"$http_user_agent" "$http_x_forwarded_for"'; - - access_log /var/log/nginx/access.log main; - - sendfile on; - #tcp_nopush on; - - keepalive_timeout 65; - - #gzip on; - - include /etc/nginx/conf.d/*.conf; - - ## - # Virtual Host Configs - ## - - include /etc/nginx/sites-enabled/*; -} -- cgit v1.2.3