]> Untitled Git - lemmy.git/blob - ansible/templates/config.hjson
Isomorphic docker (#1124)
[lemmy.git] / ansible / templates / config.hjson
1 {
2   # for more info about the config, check out the documentation
3   # https://dev.lemmy.ml/docs/administration_configuration.html
4
5   # settings related to the postgresql database
6   database: {
7     # password to connect to postgres
8     password: "{{ postgres_password }}"
9     # host where postgres is running
10     host: "postgres"
11   }
12   # the domain name of your instance (eg "dev.lemmy.ml")
13   hostname: "{{ domain }}"
14   # json web token for authorization between server and client
15   jwt_secret: "{{ jwt_password }}"
16   # email sending configuration
17   email: {
18     # hostname of the smtp server
19     smtp_server: "postfix:25"
20     # address to send emails from, eg "noreply@your-instance.com"
21     smtp_from_address: "noreply@{{ domain }}"
22     use_tls: false
23   }
24 }