From da6419167ab64c1fd79c856104d362fca35075bf Mon Sep 17 00:00:00 2001 From: Lulzette Date: Sun, 9 Jan 2022 20:27:19 +0000 Subject: [PATCH] Minimized --- files/nginx.conf | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/files/nginx.conf b/files/nginx.conf index ea699cb..89c39a1 100644 --- a/files/nginx.conf +++ b/files/nginx.conf @@ -4,53 +4,27 @@ pid /run/nginx.pid; events { worker_connections 768; - # multi_accept on; } http { - ## - # Basic Settings - ## - sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; - # server_tokens off; - - # server_names_hash_bucket_size 64; - # server_name_in_redirect off; include /etc/nginx/mime.types; default_type application/octet-stream; - ## - # SSL Settings - ## - ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE ssl_prefer_server_ciphers on; - ## - # Logging Settings - ## - access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; - ## - # Gzip Settings - ## - gzip on; - - ## - # Virtual Host Configs - ## - server { listen 80 default_server; listen [::]:80 default_server;