X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=buster%2Fetc_files%2Fweb%2Fetc%2Fnginx%2Fnginx.conf;h=83092d651d8b8749482ab6cbab96cf4fb371ea15;hb=0504405d378ed9f92ab63e2d339b52273ec8530d;hp=6d84152d283856474d757cc6cf6af2cb3fdfbf61;hpb=e3087a487aa90cbde9407da6dc71db069f4c711f;p=config diff --git a/buster/etc_files/web/etc/nginx/nginx.conf b/buster/etc_files/web/etc/nginx/nginx.conf index 6d84152..83092d6 100644 --- a/buster/etc_files/web/etc/nginx/nginx.conf +++ b/buster/etc_files/web/etc/nginx/nginx.conf @@ -4,6 +4,10 @@ worker_processes auto; pid /run/nginx.pid; include /etc/nginx/modules-enabled/*.conf; +# is expected even if empty +events { +} + http { # define content-type headers include /etc/nginx/mime.types; @@ -19,6 +23,8 @@ http { # logging deactivated due to GDPR #access_log /var/log/nginx/access.log; #error_log /var/log/nginx/error.log; + access_log off; + error_log off; # virtual hosts: sites-enabled is the Debian way, conf.d the NGINX default include /etc/nginx/conf.d/*.conf;