From fce86f7a937cc03794b1fc7e94c630eb65087d9b Mon Sep 17 00:00:00 2001 From: Christophe Vandeplas Date: Thu, 11 Nov 2021 07:01:33 +0100 Subject: [PATCH] fix: [ansible] corrects path issue with munin folder --- ansible/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/nginx.conf b/ansible/nginx.conf index 129fca4..8353186 100644 --- a/ansible/nginx.conf +++ b/ansible/nginx.conf @@ -21,7 +21,7 @@ server { root /var/www/html; server_name _; - location /munin { + location /munin/ { alias /var/cache/munin/www/; index index.html; allow 127.0.0.1; @@ -38,4 +38,4 @@ server { location @redirect { return 302 https://github.com/MISP/MISP-maltego; } -} \ No newline at end of file +}