From 992d754334d03cfc0ee4725e13082228de089d80 Mon Sep 17 00:00:00 2001 From: Ezra Date: Sun, 5 Apr 2026 06:10:54 +0000 Subject: [PATCH] [scaffold] Add Matrix/Conduit deployment: deploy/matrix/conduit.toml --- deploy/matrix/conduit.toml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 deploy/matrix/conduit.toml diff --git a/deploy/matrix/conduit.toml b/deploy/matrix/conduit.toml new file mode 100644 index 00000000..9cb8bd1f --- /dev/null +++ b/deploy/matrix/conduit.toml @@ -0,0 +1,32 @@ +[global] +server_name = "fleet.example.com" +address = "0.0.0.0" +port = 6167 + +[database] +backend = "sqlite" +path = "/var/lib/matrix-conduit" + +[registration] +enabled = false +token = "CHANGE_THIS_TO_32_HEX_CHARS" +allow_registration_without_token = false + +[federation] +enabled = true +enable_open_federation = true +trusted_servers = [] + +[media] +max_file_size = 10_485_760 +max_thumbnail_size = 5_242_880 + +[presence] +enabled = true +update_interval = 300_000 + +[log] +level = "info" + +[admin] +admins = ["@admin:fleet.example.com"]