Hi ,
I activate the authentification in nginx, I did :
htpasswd -c /etc/nginx/htpasswd.users kibanaadmin
and my kibana.conf is :
Server {
listen 80;
server_name 172.16.250.29;
auth_basic "Restricted Access";
auth_basic_user_file /etc/nginx/.kibana-user;
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;
}
}
when I restart and I want on kibana, I had error 403 forbidden !!!
Please how can I resolve this ???