Core Module - Fix the auth for master

This commit is contained in:
Mike Reeves
2019-07-22 12:57:58 -04:00
parent 1e62e78bd9
commit ab3a7aec00

View File

@@ -141,6 +141,9 @@ http {
} }
location /thehive/ { location /thehive/ {
satisfy any;
allow {{ masterip }};
deny all;
auth_basic "Security Onion"; auth_basic "Security Onion";
auth_basic_user_file /opt/so/conf/nginx/.htpasswd; auth_basic_user_file /opt/so/conf/nginx/.htpasswd;
proxy_pass http://{{ masterip }}:9000/thehive/; proxy_pass http://{{ masterip }}:9000/thehive/;