fix(caddy): imgstudio proxy with working TLS for Mac ComfyUI
Deploy Caddyfile to valhalla / deploy (push) Failing after 54s

Use imgstudio.ginnoir.com instead of comfyui.* — the ACME challenge FQDN
embeds a false .com that breaks Cloudflare DNS-01. Add per-site resolvers
1.1.1.1 to bypass LAN split-DNS during cert issuance.
This commit is contained in:
ginnoir
2026-07-05 04:08:11 -05:00
parent ec7174c255
commit ae71a2172b
2 changed files with 8 additions and 2 deletions
+7 -1
View File
@@ -401,8 +401,14 @@ webui.ginnoir.com {
# ComfyUI node editor — inference runs on the Mac at 192.168.1.121 (Metal/MPS).
# LAN/tailnet only; no Authentik (WebSocket queue/progress breaks under forward_auth).
comfyui.ginnoir.com {
# Hostname imgstudio (not comfyui): _acme-challenge.comfyui.ginnoir.com embeds a
# false ".com" that breaks Cloudflare DNS-01 zone lookup.
imgstudio.ginnoir.com {
import internal_only
tls {
dns cloudflare {env.CF_API_TOKEN}
resolvers 1.1.1.1
}
reverse_proxy 192.168.1.121:8188
}