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/ {
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/;
@@ -177,7 +180,7 @@ http {
proxy_set_header Proxy "";
}
location /kibana/app/sensoroni/ {
rewrite ^/kibana/app/sensoroni/(.*) /sensoroni/$1 permanent;
}