2024-02-27 16:49:36 +00:00
|
|
|
# Details about the PostgreSQL database connection
|
|
|
|
[database]
|
|
|
|
# Database connection url
|
|
|
|
connection_url = "postgres://ibis:password@localhost:5432/ibis"
|
|
|
|
|
|
|
|
# Database connection pool size
|
|
|
|
pool_size = 5
|
|
|
|
|
2024-02-07 15:54:43 +00:00
|
|
|
# Details of the initial admin account
|
|
|
|
[setup]
|
2024-02-08 11:20:01 +00:00
|
|
|
admin_username = "ibis"
|
|
|
|
admin_password = "ibis"
|
2024-02-07 15:54:43 +00:00
|
|
|
|
|
|
|
[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
|
2024-02-28 11:24:13 +00:00
|
|
|
blocklist = "evil.com,bad.org"
|
2024-11-14 13:52:33 +00:00
|
|
|
|
|
|
|
[options]
|
|
|
|
# Whether users can create new accounts
|
|
|
|
registration_open = true
|
|
|
|
|
|
|
|
# Whether admins need to approve new articles
|
|
|
|
article_approval = false
|