Last active
May 8, 2022 14:38
-
-
Save crazygit/fa4c24c64de37fca400b67265d6feea8 to your computer and use it in GitHub Desktop.
Revisions
-
crazygit revised this gist
May 8, 2022 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,6 +9,8 @@ services: - "--providers.docker" # Do not expose all Docker services, only the ones explicitly exposed - "--providers.docker.exposedbydefault=false" # Set default Docker network used - "--providers.docker.network=traefik-public" # Enable Docker Swarm mode - "--providers.docker.swarmmode" # Create an entrypoint "http" listening on port 80 -
crazygit revised this gist
May 8, 2022 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -103,4 +103,3 @@ networks: # services that need to be publicly available via this Traefik traefik-public: external: true -
crazygit revised this gist
May 8, 2022 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -58,12 +58,12 @@ services: - "traefik.docker.network=traefik-public" # dashboard-auth middleware with HTTP Basic auth - "traefik.http.middlewares.auth.basicauth.users=${DASHBOARD_USER}" # dashboard https router - "traefik.http.routers.dashboard.rule=Host(`${DASHBOARD_DOMAIN}`)" - "traefik.http.routers.dashboard.entrypoints=websecure" - "traefik.http.routers.dashboard.service=api@internal" - "traefik.http.routers.dashboard.tls.certresolver=letsencryptresolver" - "traefik.http.routers.dashboard.middlewares=auth" # Dummy service for Swarm port detection. The port can be any valid integer value. - "traefik.http.services.dummy-svc.loadbalancer.server.port=9999" -
crazygit revised this gist
May 8, 2022 . 1 changed file with 6 additions and 12 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -34,8 +34,8 @@ services: # Global HTTP -> HTTPS - "--entrypoints.web.http.redirections.entryPoint.to=websecure" - "--entrypoints.web.http.redirections.entryPoint.scheme=https" ports: # use host mode so traefik can get real client ip - target: 80 published: 80 mode: host @@ -58,18 +58,12 @@ services: - "traefik.docker.network=traefik-public" # dashboard-auth middleware with HTTP Basic auth - "traefik.http.middlewares.auth.basicauth.users=${DASHBOARD_USER}" - "traefik.http.routers.dashboard.middlewares=auth" # https - "traefik.http.routers.dashboard.rule=Host(`${DASHBOARD_DOMAIN}`)" - "traefik.http.routers.dashboard.entrypoints=websecure" - "traefik.http.routers.dashboard.service=api@internal" - "traefik.http.routers.dashboard.tls.certresolver=letsencryptresolver" # Dummy service for Swarm port detection. The port can be any valid integer value. - "traefik.http.services.dummy-svc.loadbalancer.server.port=9999" -
crazygit revised this gist
May 8, 2022 . No changes.There are no files selected for viewing
-
crazygit created this gist
May 8, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ ACME_EMAIL=[email protected] DASHBOARD_DOMAIN=traefik.example.com WHOAMI_SERVICE_DOMAIN=whoami.example.com # echo "DASHBOARD_USER=$(htpasswd -nb your_name your_password)" >> .env DASHBOARD_USER=your_name:$apr1$eMFHYd7e$2rl6G/UF80alLYInwv/tz0 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,112 @@ version: '3.8' services: reverse_proxy: image: traefik:v2.6 command: # - "--log.level=DEBUG" # Enable Docker in Traefik, so that it reads labels from Docker services - "--providers.docker" # Do not expose all Docker services, only the ones explicitly exposed - "--providers.docker.exposedbydefault=false" # Enable Docker Swarm mode - "--providers.docker.swarmmode" # Create an entrypoint "http" listening on port 80 - "--entrypoints.web.address=:80" # Create an entrypoint "https" listening on port 443 - "--entrypoints.websecure.address=:443" # Enable the access log, with HTTP requests - "--accesslog" # Enable the Traefik log, for configurations and errors - "--log" # Enable the Dashboard and API - "--api.dashboard=true" # Use the Http Challenge for Let's Encrypt - "--certificatesresolvers.letsencryptresolver.acme.httpchallenge=true" # Use the HTTP Challenge - "--certificatesresolvers.letsencryptresolver.acme.httpchallenge.entrypoint=web" # Create the certificate resolver "le" for Let's Encrypt, uses the environment variable EMAIL - "--certificatesresolvers.letsencryptresolver.acme.email=${ACME_EMAIL}" # Store the Let's Encrypt certificates in the mounted volume - "--certificatesresolvers.letsencryptresolver.acme.storage=/letsencrypt/acme.json" # If you uncommented the acme.caserver line, you will get an SSL error, but if you display the certificate and see it was emitted by Fake LE Intermediate X1 then it means all is good. (It is the staging environment intermediate certificate used by let's encrypt). You can now safely comment the acme.caserver line, remove the letsencrypt/acme.json file and restart Traefik to issue a valid certificate. - "--certificatesresolvers.letsencryptresolver.acme.caserver=https://acme-staging-v02.api.letsencrypt.org/directory" # Global HTTP -> HTTPS - "--entrypoints.web.http.redirections.entryPoint.to=websecure" - "--entrypoints.web.http.redirections.entryPoint.scheme=https" # use host mode so traefik can get real client ip ports: - target: 80 published: 80 mode: host - target: 443 published: 443 mode: host volumes: # So that Traefik can listen to the Docker events - /var/run/docker.sock:/var/run/docker.sock - certificates:/letsencrypt # Since the Swarm API is only exposed on the manager nodes, these are the nodes that Traefik should be scheduled on by deploying Traefik with a constraint on the node "role": deploy: placement: constraints: - node.role == manager labels: # Enable Traefik for this service, to make it available in the public network - "traefik.enable=true" # Use the traefik-public network - "traefik.docker.network=traefik-public" # dashboard-auth middleware with HTTP Basic auth - "traefik.http.middlewares.auth.basicauth.users=${DASHBOARD_USER}" - "traefik.http.routers.dashboardhttps.middlewares=auth" # http # http already redirect to https global, not need any more # - "traefik.http.routers.dashboardhttp.rule=Host(`${DASHBOARD_DOMAIN}`)" # - "traefik.http.routers.dashboardhttp.entrypoints=web" # - "traefik.http.routers.dashboardhttp.service=api@internal" # - "traefik.http.routers.dashboardhttp.middlewares=auth" # https - "traefik.http.routers.dashboardhttps.rule=Host(`${DASHBOARD_DOMAIN}`)" - "traefik.http.routers.dashboardhttps.entrypoints=websecure" - "traefik.http.routers.dashboardhttps.service=api@internal" - "traefik.http.routers.dashboardhttps.tls.certresolver=letsencryptresolver" # Dummy service for Swarm port detection. The port can be any valid integer value. - "traefik.http.services.dummy-svc.loadbalancer.server.port=9999" networks: # Use the public network created to be shared between Traefik and # any other service that needs to be publicly available with HTTPS - traefik-public whoami: image: "traefik/whoami" deploy: labels: - "traefik.enable=true" - "traefik.http.routers.whoami.rule=Host(`${WHOAMI_SERVICE_DOMAIN}`)" - "traefik.http.routers.whoami.entrypoints=websecure" - "traefik.http.routers.whoami.tls.certresolver=letsencryptresolver" - "traefik.http.services.whoami.loadbalancer.server.port=80" # add service health check - "traefik.http.services.whoami.loadbalancer.healthcheck.interval=30s" - "traefik.http.services.whoami.loadbalancer.healthcheck.path=/health" - "traefik.http.services.whoami.loadbalancer.healthcheck.timeout=5s" # more health check options # - "traefik.http.services.whoami.loadbalancer.healthcheck.port=80" # - "traefik.http.services.whoami.loadbalancer.healthcheck.scheme=http" # - "traefik.http.services.whoami.loadbalancer.healthcheck.hostname=${WHOAMI_SERVICE_DOMAIN}" # - "traefik.http.services.whoami.loadbalancer.healthcheck.headers.X-Health-Check=healthcheck" networks: - traefik-public volumes: # Create a volume to store the certificates, there is a constraint to make sure # Traefik is always deployed to the same Docker node with the same volume containing # the HTTPS certificates certificates: networks: # services that need to be publicly available via this Traefik traefik-public: external: true