2019-12-15 16:40:55 +00:00
|
|
|
{
|
2020-03-26 14:23:15 +00:00
|
|
|
# # optional: parameters for automatic configuration of new instance (only used at first start)
|
|
|
|
# setup: {
|
|
|
|
# # username for the admin user
|
|
|
|
# admin_username: ""
|
|
|
|
# # password for the admin user
|
|
|
|
# admin_password: ""
|
|
|
|
# # optional: email for the admin user (can be omitted and set later through the website)
|
|
|
|
# admin_email: ""
|
|
|
|
# # name of the site (can be changed later)
|
|
|
|
# site_name: ""
|
|
|
|
# }
|
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")
|
2020-01-18 01:34:16 +00:00
|
|
|
hostname: "my_domain"
|
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"
|
2020-06-24 14:09:52 +00:00
|
|
|
# The location of the frontend
|
2019-12-28 21:06:37 +00:00
|
|
|
front_end_dir: "../ui/dist"
|
2019-12-19 00:29:56 +00:00
|
|
|
# whether to enable activitypub federation. this feature is in alpha, do not enable in production, as might
|
|
|
|
# cause problems like remote instances fetching and permanently storing bad data.
|
|
|
|
federation_enabled: false
|
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
|
|
|
}
|
2019-12-17 16:42:13 +00:00
|
|
|
# # email sending configuration
|
2019-12-15 16:40:55 +00:00
|
|
|
# email: {
|
2020-06-24 14:09:52 +00:00
|
|
|
# # hostname and port 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: ""
|
2020-06-24 14:09:52 +00:00
|
|
|
# # address to send emails from, eg "noreply@your-instance.com"
|
2019-12-15 16:40:55 +00:00
|
|
|
# smtp_from_address: ""
|
2020-06-24 14:09:52 +00:00
|
|
|
# # whether or not smtp connections should use tls
|
|
|
|
# use_tls: true
|
2019-12-15 16:40:55 +00:00
|
|
|
# }
|
|
|
|
}
|