i have these rules:
[backends]
[backends.pma]
[backends.pma.servers.server1]
url = "http://phpmyadmin:80"
[backends.rabbitmq]
[backends.rabbitmq.servers.server1]
url = "http://rabbitmq:15672"
[frontends]
[frontends.pma]
backend = "pma"
[frontends.pma.routes.test_1]
rule = "Host:pma.example.it"
passHostHeader = true
[frontends.rabbitmq]
backend = "rabbitmq"
[frontends.rabbitmq.routes.test_1]
rule = "Host:pma.example.it;Path:/rabbitmq"
The host pma.example.it work, i see phpmyadmin, the host pma.example.it/rabbitmq not work, i have {"error":"Object Not Found","reason":"Not Found"}
.
But, from traefik container if I type curl http://rabbitmq:15672
it work's. Any ideas?
http://pma.example.it/start.js
instead ofhttp://pma.example.it/rabbitmq/start.js
– hellb0y77