Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug: If server url is in format host:port/path/ UI will perform redirects without path #256

Open
Lougarou opened this issue Jun 5, 2020 · 1 comment
Labels

Comments

@Lougarou
Copy link
Contributor

Lougarou commented Jun 5, 2020

Reproduction:

  1. Start EventStore v5 server

  2. Start Nginx with config below:
    server {
    listen 8080;
    server_name localhost;
    location /eventstore/ {
    proxy_pass http://127.0.0.1:2113/;
    }
    }

  3. Access UI at localhost:8080/eventstore/

  4. Login form will have login url as localhost:8080 instead of localhost:8080/eventstore/ <- bug 1

  5. Change login to localhost:8080/eventstore/ and log in

  6. Refresh page, redirect will be done to localhost:8080 which is resolved as not found, redirecting user back to login page <- bug 2

@jamiewinder
Copy link

I've just encountered this myself - is there a particular nginx config we should be using for this?

@tambeau tambeau added the bug label Mar 3, 2022
@hayley-jean hayley-jean added kind/bug and removed bug labels Mar 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants