forked from lavina/lavina
31 lines
475 B
TOML
31 lines
475 B
TOML
|
[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.0.sqlite"
|
||
|
|
||
|
[cluster]
|
||
|
addresses = [
|
||
|
"127.0.0.1:8080",
|
||
|
"127.0.0.1:8081",
|
||
|
]
|
||
|
|
||
|
[cluster.metadata]
|
||
|
node_id = 0
|
||
|
main_owner = 0
|
||
|
rooms = { aaaaa = 1, test = 0 }
|
||
|
|
||
|
[tracing]
|
||
|
endpoint = "http://localhost:4317"
|
||
|
service_name = "lavina-0"
|