From 56f900e1d4f39f6aa6e19e79b4fc15c800eecde5 Mon Sep 17 00:00:00 2001 From: "Matthias@Dell" Date: Mon, 27 Nov 2023 11:48:50 +0100 Subject: [PATCH] cleanup --- nginx.conf | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/nginx.conf b/nginx.conf index 233b0b4..a6c9382 100644 --- a/nginx.conf +++ b/nginx.conf @@ -3,13 +3,9 @@ error_log stderr; daemon off; pid nginx.pid; -events { - worker_connections 1024; -} - http { - include /etc/nginx/mime.types; - default_type application/octet-stream; + include /etc/nginx/mime.types; + default_type application/octet-stream; sendfile on; keepalive_timeout 65; @@ -20,13 +16,9 @@ http { listen 8080; server_name localhost; - #charset koi8-r; - - #access_log logs/host.access.log main; - location / { root /home/user/www/; - index de/index.html; + index /en/index.html; } #error_page 404 /404.html;