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"]