chore: full stack stability and migration fixes, plus react UI progress
Some checks failed
CI / podman-build (push) Has been cancelled
CI / rust (push) Has been cancelled

This commit is contained in:
2026-03-18 09:01:38 +02:00
parent 38cab8c246
commit a66d908eff
142 changed files with 12210 additions and 3402 deletions

25
Caddyfile Normal file
View File

@@ -0,0 +1,25 @@
# MadBase Global Entrypoint Configuration (Caddy)
# Automatically secures HTTP traffic over Let's Encrypt TLS and acts as the edge reverse proxy.
# Ensure your DNS records (A/CNAME) target this server instance before running.
{
email admin@madbase.local # Change this to a valid administrative email for Let's Encrypt recovery communications
}
# The Control Plane API
api.madbase.local {
reverse_proxy system:8001
}
# Web Platform / Admin Dashboard
app.madbase.local {
reverse_proxy proxy:8000
}
# The Main Edge Proxy
*.madbase.local {
tls {
on_demand
}
reverse_proxy proxy:8000
}
}