I followed these dev-guide instructions https://redash.io/help/open-source/dev-guide/docker to start app in dev mode,

and also created my vm’s nginx config file, it’s pretty simple:

server {
    server_name ~^redash\.(?<user>[a-z0-9\-]+)\.front\.dev$;

    location / {
        proxy_pass http://localhost:8080;
    }
}

I put my credentials on “/setup” page, and was redirected to “/” main page. There i stuck at infinite reload loop. When i go to “/logout” page, app redirects me to “/login”. After submit infinite reload loop again.

Are there any suggestions?

Thanks in advance

PS: here’s what it looks like https://drive.google.com/open?id=1oGzHvYqW38UQw6lOn6AkgoEDtWyjpKph

Are you still facing this issue?

yes

didn’t worked on it last weeks

What happens if you visit /default instead of /?

i see message: “It seems like the page you’re looking for cannot be found.”

but after that i performed installation steps again and it works!

i’m confused

i put same data at “/setup” step as i did before

can this be related with triggering “/default” path?