Files
confetti/confetti.toml.example
T
uelen 8ba58234e0 Added lots of debugging + token auth
Now you dont have to send your password over the wire every time and can
make do with a token instead. There's lots of debugging info now to make
it easier for me to fix bugs with the server
2026-05-30 18:22:54 -07:00

24 lines
615 B
TOML

hostname = "confetti.example.com"
port = 53512
federation_port = 53513
listen_address = "0.0.0.0"
certfile = "/etc/letsencrypt/confetti/fullchain.pem"
keyfile = "/etc/letsencrypt/confetti/privkey.pem"
media_directory = "/srv/confetti/media"
statefile = "./confetti.state"
loglevel = "debug"
max_message_len_kb = 10000
# List of users with server-level permissions that are allowed to change anything in
# any room
# admins = ["alice"]
admins = []
# Optional
# account_creation_code = "password1"
[database]
url = "my.db.server"
user = "confetti"
password = "my_secret_password"
db = "confetti"
num_connections = 8