Kibana Timelion error

I get this error when I open timelion. Does it has something to do with the reverse proxy?

Solved by 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

Will you please help me I am not able to resolve same error.
Thank you.

is it solved? Without more details I can't give you a solution. I solved mine as commented above.