summaryrefslogtreecommitdiff
path: root/tests/test-config.toml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-config.toml')
-rw-r--r--tests/test-config.toml15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/test-config.toml b/tests/test-config.toml
new file mode 100644
index 0000000..c466687
--- /dev/null
+++ b/tests/test-config.toml
@@ -0,0 +1,15 @@
+[global]
+
+# Server runs in same container as tests do, so localhost is fine
+server_name = "localhost"
+
+# With a bit of luck /tmp is a RAM disk, so that the file system does not become the bottleneck while testing
+database_path = "/tmp"
+
+# All the other settings are left at their defaults:
+port = 6167
+max_request_size = 20_000_000
+allow_registration = true
+trusted_servers = ["matrix.org"]
+address = "127.0.0.1"
+proxy = "none" \ No newline at end of file