Add calibre-web to Caddy reverse proxy, remove exposed port

Books.wampler.us now routes through Caddy. Port 8083 no longer
exposed directly since traffic goes through the proxy network.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-08 09:09:07 -07:00
parent 33df798c30
commit 5d03dad8fd
2 changed files with 6 additions and 2 deletions

View File

@@ -67,6 +67,12 @@
encode gzip encode gzip
reverse_proxy lidarr:8686 reverse_proxy lidarr:8686
} }
@calibre-web host books.wampler.us
handle @calibre-web {
encode gzip
reverse_proxy calibre-web:8083
}
} }
localhost { localhost {

View File

@@ -11,8 +11,6 @@ services:
volumes: volumes:
- /mnt/storage/apps/calibre-web/data:/config - /mnt/storage/apps/calibre-web/data:/config
- /mnt/storage/media/ebooks:/books - /mnt/storage/media/ebooks:/books
ports:
- 8083:8083
restart: unless-stopped restart: unless-stopped
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8083/login"] test: ["CMD", "curl", "-f", "http://localhost:8083/login"]