From c722ca7ad872f168e7883102d33dc2e1fad8f31c Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Fri, 24 Apr 2020 19:41:55 +0100 Subject: [PATCH] Exclude XML files from logs --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index ab84b5f..355f487 100644 --- a/nginx.conf +++ b/nginx.conf @@ -48,7 +48,7 @@ http { return 200 "PONG"; } - location ~* \.(png|jpg|gif|svg|txt)$ { + location ~* \.(png|jpg|gif|svg|txt|xml)$ { access_log off; }