Hello,
I have encountered problems with accessing the Eventstore behind NAT/Docker. The problem is, that server automatically redirects me to ext http port, which is not the port to which I am trying to access.
Eg.
- I am starting Eventstore as Docker container with such setup:
–ext-ip=0.0.0.0 —ext-http-port=2113
Which means listen to any IPs on port 2113 (as I understand).
-
I set Docker to proxy eg. port 31500 to 2113.
-
When I am trying to access with external IP eg. 1.1.1.1:31500, the server redirects (Returns HTTP Moved) me to 1.1.1.1:2113.
How can I fix this issue?
Thanks,
Maciej