X-pack Kibana Logout redirection

I'm using reverse proxy to configure Kibana. Right now after successful logout, it redirecting to x_pack login page.
Is there any way to redirect Kibana logout to some other link (say, http://xxx.yyyy.com)

Hi @keshore,

Unfortunately there is no way to configure the URL user will be redirected to after logout (yet).

But since you're using reverse proxy, may overriding of /login path by your proxy work for you? For example User Impersonation with X-Pack: Integrating Third Party Auth with Kibana article describes how to do that with nginx:

server {   
    location / {
        rewrite /login http: //localhost:4180/oauth2/sign_in redirect;
    }
}

Best,
Oleg

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.