From 1e62e78bd93860b41b1dec05c9bef0a191a59955 Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Mon, 22 Jul 2019 12:46:04 -0400 Subject: [PATCH] Core Module - Fix the auth for eval --- salt/common/nginx/nginx.conf.so-eval | 3 +++ 1 file changed, 3 insertions(+) diff --git a/salt/common/nginx/nginx.conf.so-eval b/salt/common/nginx/nginx.conf.so-eval index 06ec0e023..2f8246d30 100644 --- a/salt/common/nginx/nginx.conf.so-eval +++ b/salt/common/nginx/nginx.conf.so-eval @@ -141,6 +141,9 @@ http { } location /thehive/ { + satisfy any; + allow {{ masterip }}; + deny all; auth_basic "Security Onion"; auth_basic_user_file /opt/so/conf/nginx/.htpasswd; proxy_pass http://{{ masterip }}:9000/thehive/;