This commit is contained in:
Andreas Knuth 2025-09-11 14:35:43 -05:00
parent ffee5c0568
commit 3b3cb3aec1
1 changed files with 7 additions and 5 deletions

View File

@ -4,6 +4,10 @@
acme_dns cloudflare {env.CLOUDFLARE_API_TOKEN} acme_dns cloudflare {env.CLOUDFLARE_API_TOKEN}
acme_ca https://acme-v02.api.letsencrypt.org/directory acme_ca https://acme-v02.api.letsencrypt.org/directory
debug debug
# WICHTIG: replace MUSS vor encode & vor reverse_proxy laufen
order replace before encode
order replace before reverse_proxy
} }
# Prod: Neue Domains # Prod: Neue Domains
www.bizmatch.net { www.bizmatch.net {
@ -105,14 +109,12 @@ gregknoppcpa.bayarea-cc.com {
iitwelders.bayarea-cc.com { iitwelders.bayarea-cc.com {
encode zstd gzip encode zstd gzip
# Nur HTML umschreiben
@html header Content-Type text/html* @html header Content-Type text/html*
replace @html { replace @html {
https://iitwelders.com https://iitwelders.bayarea-cc.com https://iitwelders.com https://iitwelders.bayarea-cc.com
//iitwelders.com //iitwelders.bayarea-cc.com //iitwelders.com //iitwelders.bayarea-cc.com
} }
# Optional: auch Text-Assets (CSS/JS/JSON) umschreiben
@assets header Content-Type text/css* text/javascript* application/javascript* application/json* @assets header Content-Type text/css* text/javascript* application/javascript* application/json*
replace @assets { replace @assets {
https://iitwelders.com https://iitwelders.bayarea-cc.com https://iitwelders.com https://iitwelders.bayarea-cc.com
@ -120,16 +122,15 @@ iitwelders.bayarea-cc.com {
} }
reverse_proxy https://iitwelders.com { reverse_proxy https://iitwelders.com {
# Upstream nicht komprimieren lassen (sonst kann replace nicht arbeiten) # Upstream nicht komprimieren lassen, sonst kann replace nicht arbeiten
header_up Accept-Encoding identity header_up Accept-Encoding identity
# Origin-Host/SNI korrekt setzen
header_up Host iitwelders.com header_up Host iitwelders.com
transport http { transport http {
tls_server_name iitwelders.com tls_server_name iitwelders.com
} }
# Etwaige 30x-Location-Header auf deine Domain mappen # etwaige 30x-Location-Header auf deine Domain biegen
header_down Location https://iitwelders.bayarea-cc.com{uri} header_down Location https://iitwelders.bayarea-cc.com{uri}
} }
@ -137,6 +138,7 @@ iitwelders.bayarea-cc.com {
respond @health "ok" 200 respond @health "ok" 200
} }
www.fancytextstuff.com { www.fancytextstuff.com {
redir https://fancytextstuff.com{uri} permanent redir https://fancytextstuff.com{uri} permanent
} }