]> Untitled Git - lemmy.git/blob - docker/lemmy.hjson
Merge branch 'master' into federation
[lemmy.git] / docker / lemmy.hjson
1 {
2   # for more info about the config, check out the documentation
3   # https://dev.lemmy.ml/docs/administration_configuration.html
4
5   # the domain name of your instance (eg "dev.lemmy.ml")
6   hostname: "my_domain"
7   # address where lemmy should listen for incoming requests
8   bind: "0.0.0.0"
9   # port where lemmy should listen for incoming requests
10   port: 8536
11   # json web token for authorization between server and client
12   jwt_secret: "changeme"
13   # settings related to the postgresql database
14   database: {
15     # name of the postgres database for lemmy
16     database: "lemmy"
17     # username to connect to postgres
18     user: "lemmy"
19     # password to connect to postgres
20     password: "password"
21     # host where postgres is running
22     host: "postgres"
23   }
24   # The location of the frontend
25   front_end_dir: "/app/dist"
26 #  # optional: email sending configuration
27 #  email: {
28 #    # hostname of the smtp server
29 #    smtp_server: ""
30 #    # login name for smtp server
31 #    smtp_login: ""
32 #    # password to login to the smtp server
33 #    smtp_password: ""
34 #    # address to send emails from, eg "noreply@your-instance.com"
35 #    smtp_from_address: ""
36 #  }
37 }
38