]> Untitled Git - lemmy.git/blob - config/defaults.hjson
f14bacb51c86444afdf2dd0843e0096d83a134ec
[lemmy.git] / config / defaults.hjson
1 {
2   # settings related to the postgresql database
3   database: {
4     # Username to connect to postgres
5     user: "lemmy"
6     # Password to connect to postgres
7     password: "password"
8     # Host where postgres is running
9     host: "localhost"
10     # Port where postgres can be accessed
11     port: 5432
12     # Name of the postgres database for lemmy
13     database: "lemmy"
14     # Maximum number of active sql connections
15     pool_size: 5
16   }
17   # rate limits for various user actions, by user ip
18   rate_limit: {
19     # Maximum number of messages created in interval
20     message: 180
21     # Interval length for message limit, in seconds
22     message_per_second: 60
23     # Maximum number of posts created in interval
24     post: 6
25     # Interval length for post limit, in seconds
26     post_per_second: 600
27     # Maximum number of registrations in interval
28     register: 3
29     # Interval length for registration limit, in seconds
30     register_per_second: 3600
31     # Maximum number of image uploads in interval
32     image: 6
33     # Interval length for image uploads, in seconds
34     image_per_second: 3600
35     # Maximum number of comments created in interval
36     comment: 6
37     # Interval length for comment limit, in seconds
38     comment_per_second: 600
39     search: 6
40     # Interval length for search limit, in seconds
41     search_per_second: 600
42   }
43   # Settings related to activitypub federation
44   federation: {
45     # Whether to enable activitypub federation.
46     enabled: false
47     # Allows and blocks are described here:
48     # https://join-lemmy.org/docs/en/administration/federation_getting_started.html
49     # 
50     # list of instances with which federation is allowed
51     allowed_instances: [
52       instance1.tld
53       instance2.tld
54       /* ... */
55     ]
56     # Instances which we never federate anything with (but previously federated objects are unaffected)
57     blocked_instances: [
58       string
59       /* ... */
60     ]
61     # If true, only federate with instances on the allowlist and block everything else. If false
62     # use allowlist only for remote communities, and posts/comments in local communities
63     # (meaning remote communities will show content from arbitrary instances).
64     strict_allowlist: true
65     # Number of workers for sending outgoing activities. Search logs for Activity queue stats to
66     # see information. If running number is consistently close to the worker_count, you should
67     # increase it.
68     worker_count: 64
69   }
70   captcha: {
71     # Whether captcha is required for signup
72     enabled: false
73     # Can be easy, medium, or hard
74     difficulty: "medium"
75   }
76   # Email sending configuration. All options except login/password are mandatory
77   email: {
78     # Hostname and port of the smtp server
79     smtp_server: "localhost:25"
80     # Login name for smtp server
81     smtp_login: "string"
82     # Password to login to the smtp server
83     smtp_password: "string"
84     # Address to send emails from, eg noreply@your-instance.com
85     smtp_from_address: "noreply@example.com"
86     # Whether or not smtp connections should use tls. Can be none, tls, or starttls
87     tls_type: "none"
88   }
89   # Parameters for automatic configuration of new instance (only used at first start)
90   setup: {
91     # Username for the admin user
92     admin_username: "admin"
93     # Password for the admin user. It must be at least 10 characters.
94     admin_password: "my_passwd_longer_than_ten_characters"
95     # Name of the site (can be changed later)
96     site_name: "My Lemmy Instance"
97     # Email for the admin user (optional, can be omitted and set later through the website)
98     admin_email: "string"
99     sidebar: "string"
100     description: "string"
101     icon: "string"
102     banner: "string"
103     enable_downvotes: true
104     open_registration: true
105     enable_nsfw: true
106     community_creation_admin_only: true
107     require_email_verification: true
108     require_application: true
109     application_question: "string"
110     private_instance: true
111     default_theme: "string"
112   }
113   # the domain name of your instance (mandatory)
114   hostname: "unset"
115   # Address where lemmy should listen for incoming requests
116   bind: "0.0.0.0"
117   # Port where lemmy should listen for incoming requests
118   port: 8536
119   # Whether the site is available over TLS. Needs to be true for federation to work.
120   tls_enabled: true
121   # Address where pictrs is available (for image hosting)
122   pictrs_url: "http://localhost:8080"
123   slur_filter: "(\bThis\b)|(\bis\b)|(\bsample\b)"
124   # Maximum length of local community and user names
125   actor_name_max_length: 20
126   # Maximum number of HTTP requests allowed to handle a single incoming activity (or a single object fetch through the search).
127   http_fetch_retry_limit: 25
128 }