2019-12-28 21:06:37 +00:00
|
|
|
{
|
2020-06-24 14:09:52 +00:00
|
|
|
# for more info about the config, check out the documentation
|
2021-02-05 12:30:49 +00:00
|
|
|
# https://join.lemmy.ml/docs/en/administration/configuration.html
|
2020-06-24 14:09:52 +00:00
|
|
|
|
2020-08-05 16:00:00 +00:00
|
|
|
setup: {
|
|
|
|
# username for the admin user
|
|
|
|
admin_username: "lemmy"
|
|
|
|
# password for the admin user
|
|
|
|
admin_password: "lemmy"
|
|
|
|
# name of the site (can be changed later)
|
|
|
|
site_name: "lemmy-test"
|
|
|
|
}
|
|
|
|
|
2020-11-26 16:47:01 +00:00
|
|
|
# the domain name of your instance (eg "lemmy.ml")
|
2020-06-24 14:09:52 +00:00
|
|
|
hostname: "my_domain"
|
|
|
|
# address where lemmy should listen for incoming requests
|
|
|
|
bind: "0.0.0.0"
|
|
|
|
# port where lemmy should listen for incoming requests
|
|
|
|
port: 8536
|
|
|
|
# json web token for authorization between server and client
|
|
|
|
jwt_secret: "changeme"
|
|
|
|
# settings related to the postgresql database
|
2019-12-28 21:06:37 +00:00
|
|
|
database: {
|
2020-06-24 14:09:52 +00:00
|
|
|
# name of the postgres database for lemmy
|
|
|
|
database: "lemmy"
|
2019-12-28 21:06:37 +00:00
|
|
|
# username to connect to postgres
|
|
|
|
user: "lemmy"
|
|
|
|
# password to connect to postgres
|
|
|
|
password: "password"
|
|
|
|
# host where postgres is running
|
2020-03-09 16:50:28 +00:00
|
|
|
host: "postgres"
|
2021-03-01 17:24:11 +00:00
|
|
|
# port where postgres can be accessed
|
|
|
|
port: 5432
|
|
|
|
# maximum number of active sql connections
|
|
|
|
pool_size: 5
|
2019-12-28 21:06:37 +00:00
|
|
|
}
|
2020-03-26 14:23:15 +00:00
|
|
|
# # optional: email sending configuration
|
2019-12-28 21:06:37 +00:00
|
|
|
# email: {
|
2020-10-24 20:14:58 +00:00
|
|
|
# # hostname and port of the smtp server
|
2019-12-28 21:06:37 +00:00
|
|
|
# smtp_server: ""
|
|
|
|
# # login name for smtp server
|
|
|
|
# smtp_login: ""
|
|
|
|
# # password to login to the smtp server
|
|
|
|
# smtp_password: ""
|
2020-06-24 14:09:52 +00:00
|
|
|
# # address to send emails from, eg "noreply@your-instance.com"
|
2019-12-28 21:06:37 +00:00
|
|
|
# smtp_from_address: ""
|
2020-10-24 20:14:58 +00:00
|
|
|
# # whether or not smtp connections should use tls
|
|
|
|
# use_tls: true
|
2019-12-28 21:06:37 +00:00
|
|
|
# }
|
|
|
|
}
|
|
|
|
|