mirror of https://github.com/infosecn1nja/HELK.git
18 lines
423 B
Plaintext
18 lines
423 B
Plaintext
server {
|
|
listen 80;
|
|
|
|
server_name 127.0.0.1;
|
|
|
|
auth_basic "Restricted Access";
|
|
auth_basic_user_file /etc/nginx/htpasswd.users;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:5601;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection 'upgrade';
|
|
proxy_set_header Host $host;
|
|
proxy_cache_bypass $http_upgrade;
|
|
}
|
|
}
|