@trajano do you happen to know how to do the opposite? Meaning, to remove a slash if there is one
I'm running
version: "3.3"
services:
hello:
image: hashicorp/http-echo
container_name: hello
hostname: hello
restart: unless-stopped
command: "-listen=':5001' -text='Hello Pascal'"
labels:
#### core configs
- "traefik.enable=true"
- "traefik.http.routers.hello.rule=Host(`devkiwi.club`) && Path(`/hello`)"
- "traefik.http.services.hello.loadbalancer.server.port=5001"
#### set TLS (https)
- "traefik.http.routers.hello.entrypoints=websecure"
- "traefik.http.routers.hello.tls=true"
- "traefik.http.routers.hello.tls.certresolver=leresolver"
#### https://twitter.com/askpascalandy

