Hi there,
I'm new to Traefik and i'm having a bit of a problem here. I have a webserver with only one domain (actually none, only ip address, but it will have one domain). I need to route paths to custom services, for example:
I need the /frontend path to route to docker_container_frontend:3000.
I need the /backend path to route to docker_container_backend:8000.
The thing is. When i access the /backend path, it should call the backend container at port 8000, but with the custom url /admin, like:
http://myserver/backend/useradmin -> http://backend_container:8000/admin/useradmin
it should parse everything that's infront of backend/ and send to the container after the /admin/
Is that possible?