Sync current infrastructure state

This commit is contained in:
2026-05-28 08:31:04 +02:00
parent a5b2e03ecc
commit 8d48232a28
4 changed files with 85 additions and 6 deletions
+25 -4
View File
@@ -1,11 +1,32 @@
:80 {
handle_path /git/* {
reverse_proxy gitea:3000
handle /health {
respond "AppFactory OK" 200
}
handle /portal* {
uri strip_prefix /portal
reverse_proxy appfactory-portal:9100
}
handle /apps {
root * /srv/static
rewrite * /apps.html
file_server
}
handle_path /apps/microsoft-365-service/* {
reverse_proxy microsoft-365-service:8000
}
handle_path /webhook/* {
reverse_proxy appfactory-webhook:9000
}
handle_path /registry/* {
reverse_proxy registry:5000
reverse_proxy appfactory-registry:5000
}
respond /health "AppFactory OK" 200
handle {
respond "AppFactory gateway is running" 200
}
}