Hi, I am actually wanting to deploy a GLPI service in my traefik managed docker platform. Traefik is working fine with normal containers as reverse proxy, but I want to set up a GLPI container using path labels, my labels are as follows:
- traefik.enable=true
- traefik.docker.network=nginx-proxy
- traefik.port=80
- traefik.frontend.redirect.regex=^(.*)/glpi$$
- traefik.frontend.redirect.replacement=$$1/glpi/
- traefik.frontend.rule=HostRegexp:{subdomain:mysubdomain}.mydomain.com;PathPrefix:/glpi;ReplacePathRegex:^/glpi/(.*) /$$1
- traefik.entrypoint=https
When I hit https://mysubdomain.mydomain.com/glpi I am correctly routed to my GLPI container, but CSS is broken, and al loaded code on the browser targets to mysubdomain.mydomain.com (without the path).
Is it any way to make the path routing fully working? Thanks in advance!