Initial commit

This commit is contained in:
2026-05-12 15:40:22 -06:00
parent 5b279865a1
commit 1eac72b3cd
31 changed files with 1192 additions and 45 deletions
+25
View File
@@ -0,0 +1,25 @@
hillsidehaven.tplinkdns.com {
# Proxy API endpoints to the Go server
handle /login {
reverse_proxy server:8080
}
handle /logout {
reverse_proxy server:8080
}
handle /health {
reverse_proxy server:8080
}
handle /me {
reverse_proxy server:8080
}
handle /lanes* {
reverse_proxy server:8080
}
# Serve the Vue SPA — fall back to index.html for client-side routes
handle {
root * /srv/web
try_files {path} /index.html
file_server
}
}