I updated kibana to the newest version and now the paths are relative instead of absolute so my reverse proxy is broken. Is there any way to fix it?
Is like this issue but none fixed it
We were playing around with Kibana 4.1 which we proxied under /kibana/* - that worked quite well.
Now, the Kibana app is...
PR sent
bug
v4.2.2
v4.3.0
My previous nginx conf was:
location /kibanaadmin/ {
auth_basic "Restricted Access";
auth_basic_user_file /etc/nginx/htpasswd.users;
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;
}
But it doesn't work anymore. Is there a fix?
tbragin
(Tanya Bragin)
November 5, 2015, 4:14am
2
The fix is slated for 4.2.1, which is the next bugfix release we are working toward.
1 Like
BUT, will be like the older releases? or a variation of the current approach. Just to know, thanks !
Greetings,
CV
I get an error with Timelion, maybe it has something to do with the reverse proxy. Is there any way to fix it?
Solved adding this to my nginx conf
location /timelion {
auth_basic "Restricted Access";
auth_basic_user_file /etc/nginx/htpasswd.users;
proxy_pass http://localhost:5601/timelion;
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;
}
1 Like