14 lines
435 B
TOML
14 lines
435 B
TOML
[core]
|
|
postgres = "postgresql://mercury:password@localhost/mercury"
|
|
dev = true
|
|
secret_key = "" # generate with `openssl rand -base64 48`
|
|
|
|
[web]
|
|
domain = "http://mercury.local"
|
|
port = 8000
|
|
|
|
[security]
|
|
# whether the API should be entirely unavailable to unauthenticated users (except for OAuth endpoints)
|
|
restrict_api = false
|
|
# whether the local and global timelines should be available to unauthenticated users
|
|
public_timelines = false
|