d71b10f89c
Handlers now exist for user creation, auth, state messages, and post messages. Still need to do group permissions and messages
23 lines
599 B
TOML
23 lines
599 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"
|
|
num_connections = 8
|