From 7a3d892c6ef3c8196bc2aaa30271e98bcd543815 Mon Sep 17 00:00:00 2001 From: Jannis Braun <151788261+TheZwiss@users.noreply.github.com> Date: Wed, 1 Jul 2026 01:34:16 +0200 Subject: [PATCH] deploy: never rsync over the host-owned Caddyfile The Pi's Caddyfile carries extra vhost blocks (e.g. other-site.example.com) that aren't in this repo; add it to the rsync excludes so deploys don't overwrite it. --- deploy.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deploy.sh b/deploy.sh index a715c9d5..188956cd 100755 --- a/deploy.sh +++ b/deploy.sh @@ -39,6 +39,9 @@ EXCLUDES=( --exclude='installers' --exclude='data' --exclude='livekit.yaml' + # Host-owned reverse-proxy config: the Pi's Caddyfile carries extra vhost + # blocks (e.g. other-site.example.com) that aren't in this repo. Never overwrite it. + --exclude='Caddyfile' --exclude='.DS_Store' --exclude='.superpowers' --exclude='.claude'