From 65dc59a8b535287129dfe42087525a5a03206b6d Mon Sep 17 00:00:00 2001 From: Nikita Vilunov Date: Fri, 10 May 2024 15:38:52 +0200 Subject: [PATCH] default config --- config.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 config.toml diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..399a033 --- /dev/null +++ b/config.toml @@ -0,0 +1,24 @@ +[telemetry] +listen_on = "127.0.0.1:8080" + +[irc] +listen_on = "127.0.0.1:6667" +server_name = "irc.localhost" + +[xmpp] +listen_on = "127.0.0.1:5222" +cert = "./certs/xmpp.pem" +key = "./certs/xmpp.key" +hostname = "localhost" + +[storage] +db_path = "db.sqlite" + +[cluster] +addresses = [] + +[cluster.metadata] +node_id = 0 +main_owner = 0 +test_owner = 0 +test2_owner = 0