When running Matchbox in Docker, if I configure the context path to be the root path (/), the UI fails to generate valid requests to the backend.
Steps to reproduce:
- Start Matchbox with Docker with context-path set to root:
docker run --rm --name matchbox -p 8080:8080 -e server.servlet.context-path=/ europe-west6-docker.pkg.dev/ahdis-ch/ahdis/matchbox:v4.0.17 matchbox
- Open
http://localhost:8080/CapabilityStatement
- Request to backend fails
NOTE: When setting another context path (e.g. docker run --rm --name matchbox -p 8080:8080 -e server.servlet.context-path=/test europe-west6-docker.pkg.dev/ahdis-ch/ahdis/matchbox:v4.0.17 matchbox), everything works fine.
When running Matchbox in Docker, if I configure the context path to be the root path (
/), the UI fails to generate valid requests to the backend.Steps to reproduce:
docker run --rm --name matchbox -p 8080:8080 -e server.servlet.context-path=/ europe-west6-docker.pkg.dev/ahdis-ch/ahdis/matchbox:v4.0.17 matchboxhttp://localhost:8080/CapabilityStatementNOTE: When setting another context path (e.g.
docker run --rm --name matchbox -p 8080:8080 -e server.servlet.context-path=/test europe-west6-docker.pkg.dev/ahdis-ch/ahdis/matchbox:v4.0.17 matchbox), everything works fine.