initial commit

This commit is contained in:
Bartal Læarsson
2026-06-18 21:41:47 +01:00
commit 8e60f0472b
29 changed files with 2872 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# Example Caddyfile site block for the zeitkort web app.
# Caddy handles TLS automatically via Let's Encrypt.
#
# Access control is done HERE (the app itself has no login screen): only the
# listed IPs/ranges reach it. Everyone else gets 403.
zeit.example.com {
@allowed remote_ip 203.0.113.4 198.51.100.0/24
handle @allowed {
reverse_proxy 127.0.0.1:8081
}
respond "Forbidden" 403
}
# This web-only POC has no separate API/backend service.