# Per-recipe harness config for matrix-synapse (recipe #4 — DB + media store; the large-volume / # DB-backed category). Base recipe = synapse `app` + postgres `db` + nginx `web`. server_name is # DOMAIN (set by abra), so no EXTRA_ENV needed. Synapse + postgres startup is slow -> long timeouts. HEALTH_PATH = "/_matrix/client/versions" # 200 JSON once synapse is serving the client API HEALTH_OK = (200,) DEPLOY_TIMEOUT = 600 HTTP_TIMEOUT = 600 # Phase-2 needs ENABLE_REGISTRATION=true (Plan §4.3 prescribed register-and-message test uses # the public client API to create two users; admin shared-secret /_synapse/admin/* isn't routed # publicly). TIMEOUT=900 overrides the recipe's default 300s abra-deploy convergence timeout — # synapse + postgres-autoupgrade cold-start frequently exceeds 300s. Safe for ephemeral CI: each # run is a fresh DB with no users accumulating. EXTRA_ENV = {"ENABLE_REGISTRATION": "true", "TIMEOUT": "900"}