2019-12-17 21:35:48 +00:00
|
|
|
{
|
2020-06-24 14:09:52 +00:00
|
|
|
# for more info about the config, check out the documentation
|
2020-11-26 16:47:01 +00:00
|
|
|
# https://lemmy.ml/docs/administration_configuration.html
|
2020-06-24 14:09:52 +00:00
|
|
|
|
|
|
|
# settings related to the postgresql database
|
2019-12-17 21:35:48 +00:00
|
|
|
database: {
|
2020-06-24 14:09:52 +00:00
|
|
|
# password to connect to postgres
|
2019-12-17 21:35:48 +00:00
|
|
|
password: "{{ postgres_password }}"
|
2020-06-24 14:09:52 +00:00
|
|
|
# host where postgres is running
|
2020-03-09 16:50:28 +00:00
|
|
|
host: "postgres"
|
2019-12-17 21:35:48 +00:00
|
|
|
}
|
2020-11-26 16:47:01 +00:00
|
|
|
# the domain name of your instance (eg "lemmy.ml")
|
2019-12-17 21:35:48 +00:00
|
|
|
hostname: "{{ domain }}"
|
2020-06-24 14:09:52 +00:00
|
|
|
# json web token for authorization between server and client
|
2019-12-17 21:35:48 +00:00
|
|
|
jwt_secret: "{{ jwt_password }}"
|
2020-06-24 14:09:52 +00:00
|
|
|
# email sending configuration
|
2019-12-17 21:35:48 +00:00
|
|
|
email: {
|
2020-06-24 14:09:52 +00:00
|
|
|
# hostname of the smtp server
|
2020-01-31 11:03:26 +00:00
|
|
|
smtp_server: "postfix:25"
|
2020-06-24 14:09:52 +00:00
|
|
|
# address to send emails from, eg "noreply@your-instance.com"
|
2020-01-31 11:03:26 +00:00
|
|
|
smtp_from_address: "noreply@{{ domain }}"
|
|
|
|
use_tls: false
|
2019-12-17 21:35:48 +00:00
|
|
|
}
|
2020-10-22 14:32:56 +00:00
|
|
|
# settings related to activitypub federation
|
|
|
|
federation: {
|
|
|
|
# whether to enable activitypub federation.
|
|
|
|
enabled: false
|
|
|
|
# Allows and blocks are described here:
|
2020-11-26 16:47:01 +00:00
|
|
|
# https://lemmy.ml/docs/administration_federation.html#instance-allowlist-and-blocklist
|
2020-10-22 14:32:56 +00:00
|
|
|
#
|
|
|
|
# comma separated list of instances with which federation is allowed
|
|
|
|
# allowed_instances: ""
|
|
|
|
# comma separated list of instances which are blocked from federating
|
|
|
|
# blocked_instances: ""
|
|
|
|
}
|
2019-12-17 21:35:48 +00:00
|
|
|
}
|