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-06-07 21:10:47 +00:00
|
|
|
# https://join-lemmy.org/docs/en/administration/configuration.html
|
2022-10-10 16:06:52 +00:00
|
|
|
# only few config options are covered in this example config
|
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
|
2021-09-19 21:20:47 +00:00
|
|
|
admin_password: "lemmylemmy"
|
2020-08-05 16:00:00 +00:00
|
|
|
# name of the site (can be changed later)
|
2022-10-10 16:06:52 +00:00
|
|
|
site_name: "mylemmyinstance"
|
2020-08-05 16:00:00 +00:00
|
|
|
}
|
|
|
|
|
2020-11-26 16:47:01 +00:00
|
|
|
# the domain name of your instance (eg "lemmy.ml")
|
2022-04-13 11:13:29 +00:00
|
|
|
hostname: "mydomain.ml"
|
2020-06-24 14:09:52 +00:00
|
|
|
# address where lemmy should listen for incoming requests
|
|
|
|
bind: "0.0.0.0"
|
|
|
|
# port where lemmy should listen for incoming requests
|
|
|
|
port: 8536
|
2022-10-10 16:06:52 +00:00
|
|
|
# Whether the site is available over TLS. Needs to be true for federation to work.
|
|
|
|
tls_enabled: true
|
|
|
|
|
|
|
|
# pictrs host
|
|
|
|
pictrs_url: "http://pictrs:8080"
|
|
|
|
|
2020-06-24 14:09:52 +00:00
|
|
|
# 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
|
|
|
}
|
|
|
|
}
|
|
|
|
|