2019-12-15 16:40:55 +00:00
|
|
|
{
|
2019-12-17 16:42:13 +00:00
|
|
|
# settings related to the postgresql database
|
2019-12-15 16:40:55 +00:00
|
|
|
database: {
|
2019-12-26 19:48:13 +00:00
|
|
|
# username to connect to postgres
|
|
|
|
user: "lemmy"
|
|
|
|
# password to connect to postgres
|
|
|
|
password: "password"
|
|
|
|
# host where postgres is running
|
|
|
|
host: "localhost"
|
|
|
|
# port where postgres can be accessed
|
|
|
|
port: 5432
|
|
|
|
# name of the postgres database for lemmy
|
|
|
|
database: "lemmy"
|
|
|
|
# maximum number of active sql connections
|
|
|
|
pool_size: 5
|
|
|
|
}
|
2019-12-17 16:42:13 +00:00
|
|
|
# the domain name of your instance (eg "dev.lemmy.ml")
|
2019-12-27 17:25:07 +00:00
|
|
|
hostname: null
|
2019-12-17 16:42:13 +00:00
|
|
|
# address where lemmy should listen for incoming requests
|
2019-12-15 16:40:55 +00:00
|
|
|
bind: "0.0.0.0"
|
2019-12-17 16:42:13 +00:00
|
|
|
# port where lemmy should listen for incoming requests
|
2019-12-15 16:40:55 +00:00
|
|
|
port: 8536
|
2019-12-17 16:42:13 +00:00
|
|
|
# json web token for authorization between server and client
|
2019-12-15 16:40:55 +00:00
|
|
|
jwt_secret: "changeme"
|
2019-12-28 21:06:37 +00:00
|
|
|
# The dir for the front end
|
|
|
|
front_end_dir: "../ui/dist"
|
2019-12-17 16:42:13 +00:00
|
|
|
# rate limits for various user actions, by user ip
|
2019-12-15 16:40:55 +00:00
|
|
|
rate_limit: {
|
2019-12-17 16:42:13 +00:00
|
|
|
# maximum number of messages created in interval
|
2020-02-06 21:07:59 +00:00
|
|
|
message: 180
|
2019-12-17 16:42:13 +00:00
|
|
|
# interval length for message limit
|
2019-12-28 21:06:37 +00:00
|
|
|
message_per_second: 60
|
2019-12-17 16:42:13 +00:00
|
|
|
# maximum number of posts created in interval
|
2019-12-28 21:06:37 +00:00
|
|
|
post: 6
|
2019-12-17 16:42:13 +00:00
|
|
|
# interval length for post limit
|
2019-12-28 21:06:37 +00:00
|
|
|
post_per_second: 600
|
2019-12-17 16:42:13 +00:00
|
|
|
# maximum number of registrations in interval
|
2019-12-28 21:06:37 +00:00
|
|
|
register: 3
|
2019-12-17 16:42:13 +00:00
|
|
|
# interval length for registration limit
|
2019-12-28 21:06:37 +00:00
|
|
|
register_per_second: 3600
|
2019-12-15 16:40:55 +00:00
|
|
|
}
|
2020-03-18 21:09:00 +00:00
|
|
|
# settings related to activitypub federation
|
|
|
|
federation: {
|
|
|
|
# whether to enable activitypub federation. this feature is in alpha, do not enable in production.
|
|
|
|
enabled: false
|
|
|
|
# comma seperated list of instances to follow
|
|
|
|
followed_instances: ""
|
|
|
|
# whether tls is required for activitypub. only disable this for debugging, never for producion.
|
|
|
|
tls_enabled: true
|
|
|
|
}
|
2019-12-17 16:42:13 +00:00
|
|
|
# # email sending configuration
|
2019-12-15 16:40:55 +00:00
|
|
|
# email: {
|
2019-12-17 16:42:13 +00:00
|
|
|
# # hostname of the smtp server
|
2019-12-15 16:40:55 +00:00
|
|
|
# smtp_server: ""
|
2019-12-17 16:42:13 +00:00
|
|
|
# # login name for smtp server
|
2019-12-15 16:40:55 +00:00
|
|
|
# smtp_login: ""
|
2019-12-17 16:42:13 +00:00
|
|
|
# # password to login to the smtp server
|
2019-12-15 16:40:55 +00:00
|
|
|
# smtp_password: ""
|
2019-12-17 16:42:13 +00:00
|
|
|
# # address to send emails from, eg "info@your-instance.com"
|
2019-12-15 16:40:55 +00:00
|
|
|
# smtp_from_address: ""
|
|
|
|
# }
|
|
|
|
}
|