Fix: Connect tunnel to Traefik via HTTPS to prevent redirect loops
Some checks failed
deploy-tunnel / deploy (push) Failing after 9s
Some checks failed
deploy-tunnel / deploy (push) Failing after 9s
- Cambiado service de http://traefik:80 a https://traefik:443 - noTLSVerify: true para aceptar certificados self-signed de Traefik - Esto previene ERR_TOO_MANY_REDIRECTS
This commit is contained in:
@@ -8,17 +8,17 @@ credentials-file: /etc/cloudflared/credentials.json
|
|||||||
ingress:
|
ingress:
|
||||||
# Wildcard - todo *.nucleoriofrio.com pasa por Traefik
|
# Wildcard - todo *.nucleoriofrio.com pasa por Traefik
|
||||||
- hostname: "*.nucleoriofrio.com"
|
- hostname: "*.nucleoriofrio.com"
|
||||||
service: http://traefik:80
|
service: https://traefik:443
|
||||||
originRequest:
|
originRequest:
|
||||||
noTLSVerify: false
|
noTLSVerify: true
|
||||||
# Preserve el Host header para que Traefik pueda enrutar correctamente
|
# Preserve el Host header para que Traefik pueda enrutar correctamente
|
||||||
httpHostHeader: ""
|
httpHostHeader: ""
|
||||||
|
|
||||||
# Dominio raíz (opcional)
|
# Dominio raíz (opcional)
|
||||||
- hostname: nucleoriofrio.com
|
- hostname: nucleoriofrio.com
|
||||||
service: http://traefik:80
|
service: https://traefik:443
|
||||||
originRequest:
|
originRequest:
|
||||||
noTLSVerify: false
|
noTLSVerify: true
|
||||||
httpHostHeader: ""
|
httpHostHeader: ""
|
||||||
|
|
||||||
# Catch-all - rechaza todo lo demás
|
# Catch-all - rechaza todo lo demás
|
||||||
|
|||||||
Reference in New Issue
Block a user