2021-02-21 06:08:46 +01:00
|
|
|
{
|
2021-07-07 16:42:05 +02:00
|
|
|
# settings related to the postgresql database
|
|
|
|
database: {
|
2022-02-06 18:37:38 +01:00
|
|
|
# Username to connect to postgres
|
2021-07-07 16:42:05 +02:00
|
|
|
user: "__DB_USER__"
|
2022-02-06 18:37:38 +01:00
|
|
|
# Password to connect to postgres
|
2021-07-07 16:42:05 +02:00
|
|
|
password: "__DB_PWD__"
|
2022-02-06 18:37:38 +01:00
|
|
|
# Host where postgres is running
|
2021-07-07 16:42:05 +02:00
|
|
|
host: "localhost"
|
2022-02-06 18:37:38 +01:00
|
|
|
# Port where postgres can be accessed
|
2021-07-07 16:42:05 +02:00
|
|
|
port: 5432
|
2022-02-06 18:37:38 +01:00
|
|
|
# Name of the postgres database for lemmy
|
2021-07-07 16:42:05 +02:00
|
|
|
database: "__DB_NAME__"
|
2022-02-06 18:37:38 +01:00
|
|
|
# Maximum number of active sql connections
|
2021-07-07 16:42:05 +02:00
|
|
|
pool_size: 5
|
2021-02-21 06:08:46 +01:00
|
|
|
}
|
2021-07-07 16:42:05 +02:00
|
|
|
# rate limits for various user actions, by user ip
|
|
|
|
rate_limit: {
|
2022-02-06 18:37:38 +01:00
|
|
|
# Maximum number of messages created in interval
|
2021-07-07 16:42:05 +02:00
|
|
|
message: 180
|
2022-02-06 18:37:38 +01:00
|
|
|
# Interval length for message limit, in seconds
|
2021-07-07 16:42:05 +02:00
|
|
|
message_per_second: 60
|
2022-02-06 18:37:38 +01:00
|
|
|
# Maximum number of posts created in interval
|
2021-07-07 16:42:05 +02:00
|
|
|
post: 6
|
2022-02-06 18:37:38 +01:00
|
|
|
# Interval length for post limit, in seconds
|
2021-07-07 16:42:05 +02:00
|
|
|
post_per_second: 600
|
2022-02-06 18:37:38 +01:00
|
|
|
# Maximum number of registrations in interval
|
2021-07-07 16:42:05 +02:00
|
|
|
register: 3
|
2022-02-06 18:37:38 +01:00
|
|
|
# Interval length for registration limit, in seconds
|
2021-07-07 16:42:05 +02:00
|
|
|
register_per_second: 3600
|
2022-02-06 18:37:38 +01:00
|
|
|
# Maximum number of image uploads in interval
|
2021-07-07 16:42:05 +02:00
|
|
|
image: 6
|
2022-02-06 18:37:38 +01:00
|
|
|
# Interval length for image uploads, in seconds
|
2021-07-07 16:42:05 +02:00
|
|
|
image_per_second: 3600
|
2022-02-06 18:37:38 +01:00
|
|
|
# Maximum number of comments created in interval
|
|
|
|
comment: 6
|
|
|
|
# Interval length for comment limit, in seconds
|
|
|
|
comment_per_second: 600
|
2021-07-07 16:42:05 +02:00
|
|
|
}
|
2022-02-06 18:37:38 +01:00
|
|
|
# Settings related to activitypub federation
|
2021-07-07 16:42:05 +02:00
|
|
|
federation: {
|
2022-02-06 18:37:38 +01:00
|
|
|
# Whether to enable activitypub federation.
|
2021-07-07 16:42:05 +02:00
|
|
|
enabled: true
|
|
|
|
# Allows and blocks are described here:
|
2022-02-06 18:37:38 +01:00
|
|
|
# https://join-lemmy.org/docs/en/federation/administration.html///instance-allowlist-and-blocklist
|
|
|
|
#
|
2021-07-07 16:42:05 +02:00
|
|
|
# list of instances with which federation is allowed
|
|
|
|
# allowed_instances: ["instance1.tld","instance2.tld"]
|
|
|
|
# instances which we never federate anything with (but previously federated objects are unaffected)
|
|
|
|
# blocked_instances: []
|
|
|
|
# If true, only federate with instances on the allowlist and block everything else. If false,
|
|
|
|
# use allowlist only for remote communities, and posts/comments in local communities.
|
|
|
|
# strict_allowlist: true
|
|
|
|
}
|
|
|
|
captcha: {
|
2022-02-06 18:37:38 +01:00
|
|
|
# Whether captcha is required for signup
|
|
|
|
enabled: false
|
|
|
|
# Can be easy, medium, or hard
|
|
|
|
difficulty: "medium"
|
2021-07-07 16:42:05 +02:00
|
|
|
}
|
2022-02-06 18:37:38 +01:00
|
|
|
# Email sending configuration. All options except login/password are mandatory
|
2021-07-07 16:42:05 +02:00
|
|
|
email: {
|
2022-02-06 18:37:38 +01:00
|
|
|
# Hostname and port of the smtp server
|
2021-07-07 16:42:05 +02:00
|
|
|
smtp_server: "127.0.0.1:25"
|
2022-02-06 18:37:38 +01:00
|
|
|
# Login name for smtp server
|
2021-07-07 16:42:05 +02:00
|
|
|
smtp_login: ""
|
2022-02-06 18:37:38 +01:00
|
|
|
# Password to login to the smtp server
|
2021-07-07 16:42:05 +02:00
|
|
|
smtp_password: ""
|
2022-02-06 18:37:38 +01:00
|
|
|
# Address to send emails from, eg noreply@your-instance.com
|
2021-07-07 16:42:05 +02:00
|
|
|
smtp_from_address: "lemmy@__DOMAIN__"
|
2022-02-06 18:37:38 +01:00
|
|
|
# Whether or not smtp connections should use tls
|
2021-07-07 16:42:05 +02:00
|
|
|
use_tls: true
|
2021-02-21 06:08:46 +01:00
|
|
|
}
|
2022-02-06 18:37:38 +01:00
|
|
|
# Parameters for automatic configuration of new instance (only used at first start)
|
|
|
|
setup: {
|
|
|
|
# Username for the admin user
|
|
|
|
admin_username: "__ADMIN__"
|
|
|
|
# Password for the admin user. It must be at least 10 characters.
|
|
|
|
admin_password: "__PASSWORD__"
|
|
|
|
# Name of the site (can be changed later)
|
|
|
|
site_name: "__SITENAME__"
|
|
|
|
# Email for the admin user (optional, can be omitted and set later through the website)
|
|
|
|
admin_email: "__ADMIN_EMAIL__"
|
|
|
|
sidebar: "string"
|
|
|
|
description: "string"
|
|
|
|
icon: "string"
|
|
|
|
banner: "string"
|
|
|
|
enable_downvotes: true
|
|
|
|
open_registration: true
|
|
|
|
enable_nsfw: true
|
|
|
|
community_creation_admin_only: true
|
|
|
|
require_email_verification: true
|
|
|
|
require_application: true
|
|
|
|
application_question: "string"
|
|
|
|
private_instance: false
|
|
|
|
}
|
|
|
|
# the domain name of your instance (mandatory)
|
|
|
|
hostname: "__DOMAIN__"
|
|
|
|
# Address where lemmy should listen for incoming requests
|
|
|
|
bind: "0.0.0.0"
|
|
|
|
# Port where lemmy should listen for incoming requests
|
|
|
|
port: __PORT_LEMMY__
|
|
|
|
# Whether the site is available over TLS. Needs to be true for federation to work.
|
|
|
|
tls_enabled: true
|
|
|
|
# Address where pictrs is available (for image hosting)
|
|
|
|
pictrs_url: "http://127.0.0.1:__PORT_PICTRS__"
|
|
|
|
slur_filter: "(\bThis\b)|(\bis\b)|(\bsample\b)"
|
|
|
|
# Maximum length of local community and user names
|
|
|
|
actor_name_max_length: 20
|
|
|
|
# Maximum number of HTTP requests allowed to handle a single incoming activity (or a single object fetch through the search).
|
|
|
|
http_fetch_retry_limit: 25
|
2021-02-21 06:08:46 +01:00
|
|
|
}
|