Disable all logging in nginx

This commit is contained in:
dragongoose 2023-04-11 21:01:00 -04:00
parent ae112caa4f
commit 610ccabd24

View File

@ -4,6 +4,9 @@ http {
server { server {
listen 80; listen 80;
access_log off;
error_log off;
location / { location / {
root /usr/share/nginx/html; root /usr/share/nginx/html;