]> Untitled Git - lemmy.git/blob - ansible/templates/config.hjson
72d7c58cb455e67a86871e513a132b3093067a31
[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   # The location of the frontend
17   front_end_dir: "/app/dist"
18   # email sending configuration
19   email: {
20     # hostname of the smtp server
21     smtp_server: "postfix:25"
22     # address to send emails from, eg "noreply@your-instance.com"
23     smtp_from_address: "noreply@{{ domain }}"
24     use_tls: false
25   }
26 }