We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Reproduction:
Start EventStore v5 server
Start Nginx with config below: server { listen 8080; server_name localhost; location /eventstore/ { proxy_pass http://127.0.0.1:2113/; } }
Access UI at localhost:8080/eventstore/
Login form will have login url as localhost:8080 instead of localhost:8080/eventstore/ <- bug 1
Change login to localhost:8080/eventstore/ and log in
Refresh page, redirect will be done to localhost:8080 which is resolved as not found, redirecting user back to login page <- bug 2
The text was updated successfully, but these errors were encountered:
I've just encountered this myself - is there a particular nginx config we should be using for this?
Sorry, something went wrong.
No branches or pull requests
Reproduction:
Start EventStore v5 server
Start Nginx with config below:
server {
listen 8080;
server_name localhost;
location /eventstore/ {
proxy_pass http://127.0.0.1:2113/;
}
}
Access UI at localhost:8080/eventstore/
Login form will have login url as localhost:8080 instead of localhost:8080/eventstore/ <- bug 1
Change login to localhost:8080/eventstore/ and log in
Refresh page, redirect will be done to localhost:8080 which is resolved as not found, redirecting user back to login page <- bug 2
The text was updated successfully, but these errors were encountered: