dsjiern

Results 2 comments of dsjiern

Hey, i'm using traefik with this `docker-compose.override.yml`: ``` services: nginx: labels: - "traefik.enable=true" - "traefik.http.routers.bbb.entrypoints=http" - "traefik.http.routers.bbb.rule=Host(`bbb.example.com`)" # ADJUST DOMAIN HERE - "traefik.http.middlewares.bbb-https-redirect.redirectscheme.scheme=https" - "traefik.http.routers.bbb.middlewares=bbb-https-redirect" - "traefik.http.routers.bbb-secure.entrypoints=https" - "traefik.http.routers.bbb-secure.rule=Host(`bbb.example.com`)" #...

Yes, this works perfectly for me on 4 servers! I just added the above `docker-compose.override.yml` and deleted the `network_mode: host` from the `docker-compose.yml` in the `nginx`-section. Nothing else! I entered...