fix: drop .org from cert until DNS is pointed — unblocks .com SSL

This commit is contained in:
2026-03-18 19:00:45 +08:00
parent 5292298f22
commit 46534f33a5
+3 -3
View File
@@ -22,15 +22,15 @@ services:
labels:
- "traefik.enable=true"
# HTTPS router
- "traefik.http.routers.ngotoolkit.rule=Host(`ngotoolkit.quikcue.com`) || Host(`ngotoolkitlab.com`) || Host(`www.ngotoolkitlab.com`) || Host(`ngotoolkitlab.org`) || Host(`www.ngotoolkitlab.org`)"
- "traefik.http.routers.ngotoolkit.rule=Host(`ngotoolkit.quikcue.com`) || Host(`ngotoolkitlab.com`) || Host(`www.ngotoolkitlab.com`)"
- "traefik.http.routers.ngotoolkit.entrypoints=websecure"
- "traefik.http.routers.ngotoolkit.tls=true"
- "traefik.http.routers.ngotoolkit.tls.certresolver=letsencrypt"
- "traefik.http.routers.ngotoolkit.tls.domains[0].main=ngotoolkitlab.com"
- "traefik.http.routers.ngotoolkit.tls.domains[0].sans=www.ngotoolkitlab.com,ngotoolkitlab.org,www.ngotoolkitlab.org,ngotoolkit.quikcue.com"
- "traefik.http.routers.ngotoolkit.tls.domains[0].sans=www.ngotoolkitlab.com,ngotoolkit.quikcue.com"
- "traefik.http.services.ngotoolkit.loadbalancer.server.port=3000"
# HTTP router — redirect to HTTPS
- "traefik.http.routers.ngotoolkit-http.rule=Host(`ngotoolkit.quikcue.com`) || Host(`ngotoolkitlab.com`) || Host(`www.ngotoolkitlab.com`) || Host(`ngotoolkitlab.org`) || Host(`www.ngotoolkitlab.org`)"
- "traefik.http.routers.ngotoolkit-http.rule=Host(`ngotoolkit.quikcue.com`) || Host(`ngotoolkitlab.com`) || Host(`www.ngotoolkitlab.com`)"
- "traefik.http.routers.ngotoolkit-http.entrypoints=web"
- "traefik.http.routers.ngotoolkit-http.middlewares=ngotoolkit-https-redirect"
- "traefik.http.middlewares.ngotoolkit-https-redirect.redirectscheme.scheme=https"