lukas
(Lukas Olson)
July 24, 2018, 11:38pm
2
Hi @RajiReddy , please see these posts:
You can pass the Authorization header as Joe suggests using an nginx proxy.
Here is the relevant section of my nginx.conf:
server {
listen 4443 ssl; # the default was port 443
server_name tim-virtual-machine.local;
ssl_certificate /home/tim/domain.crt;
ssl_certificate_key /home/tim/domain.key;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
location / {
…
Hi,
We have shield protected kibana dashboard embedded as iframe in our UI. We need to be able to pass authentication headers to the dashboard so that the reports can display without the user having to put credentials again. How can we pass the auth headers to kibana from UI?