1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-10-26 10:09:53 +00:00
ibis/config/defaults.toml
Felix Ableitner 0f0f83bc3a various changes
- only admin can edit main page
- adjust config values
- better text for default page
2024-02-08 12:22:15 +01:00

25 lines
704 B
TOML

# Address where ibis should listen for incoming requests
bind = "127.0.0.1:8081"
# Database connection url
database_url = "postgres://ibis:password@localhost:5432/ibis"
# Whether users can create new accounts
registration_open = true
# Details of the initial admin account
[setup]
admin_username = "ibis"
admin_password = "ibis"
[federation]
# Domain name of the instance, mandatory for federation
domain = "example.com"
# Comma separated list of instances which are allowed for federation. If set, federation
# with other domains is blocked
# Optional
allowlist = "good.com,friends.org"
# Comma separated list of instances which are blocked for federation; optional
blocklist = "evil.com,bad.org"