Let favourites and emoji reactions optionally be hidden
[akkoma] / docs / configuration / cheatsheet.md
1 # Configuration Cheat Sheet
2
3 This is a cheat sheet for Pleroma configuration file, any setting possible to configure should be listed here.
4
5 For OTP installations the configuration is typically stored in `/etc/pleroma/config.exs`.
6
7 For from source installations Pleroma configuration works by first importing the base config `config/config.exs`, then overriding it by the environment config `config/$MIX_ENV.exs` and then overriding it by user config `config/$MIX_ENV.secret.exs`. In from source installations you should always make the changes to the user config and NEVER to the base config to avoid breakages and merge conflicts. So for production you change/add configuration to `config/prod.secret.exs`.
8
9 To add configuration to your config file, you can copy it from the base config. The latest version of it can be viewed [here](https://git.pleroma.social/pleroma/pleroma/blob/develop/config/config.exs). You can also use this file if you don't know how an option is supposed to be formatted.
10
11 ## :chat
12
13 * `enabled` - Enables the backend chat. Defaults to `true`.
14
15 ## :instance
16 * `name`: The instance’s name.
17 * `email`: Email used to reach an Administrator/Moderator of the instance.
18 * `notify_email`: Email used for notifications.
19 * `description`: The instance’s description, can be seen in nodeinfo and ``/api/v1/instance``.
20 * `limit`: Posts character limit (CW/Subject included in the counter).
21 * `discription_limit`: The character limit for image descriptions.
22 * `chat_limit`: Character limit of the instance chat messages.
23 * `remote_limit`: Hard character limit beyond which remote posts will be dropped.
24 * `upload_limit`: File size limit of uploads (except for avatar, background, banner).
25 * `avatar_upload_limit`: File size limit of user’s profile avatars.
26 * `background_upload_limit`: File size limit of user’s profile backgrounds.
27 * `banner_upload_limit`: File size limit of user’s profile banners.
28 * `poll_limits`: A map with poll limits for **local** polls.
29 * `max_options`: Maximum number of options.
30 * `max_option_chars`: Maximum number of characters per option.
31 * `min_expiration`: Minimum expiration time (in seconds).
32 * `max_expiration`: Maximum expiration time (in seconds).
33 * `registrations_open`: Enable registrations for anyone, invitations can be enabled when false.
34 * `invites_enabled`: Enable user invitations for admins (depends on `registrations_open: false`).
35 * `account_activation_required`: Require users to confirm their emails before signing in.
36 * `federating`: Enable federation with other instances.
37 * `federation_incoming_replies_max_depth`: Max. depth of reply-to activities fetching on incoming federation, to prevent out-of-memory situations while fetching very long threads. If set to `nil`, threads of any depth will be fetched. Lower this value if you experience out-of-memory crashes.
38 * `federation_reachability_timeout_days`: Timeout (in days) of each external federation target being unreachable prior to pausing federating to it.
39 * `allow_relay`: Enable Pleroma’s Relay, which makes it possible to follow a whole instance.
40 * `public`: Makes the client API in authenticated mode-only except for user-profiles. Useful for disabling the Local Timeline and The Whole Known Network. See also: `restrict_unauthenticated`.
41 * `quarantined_instances`: List of ActivityPub instances where private(DMs, followers-only) activities will not be send.
42 * `managed_config`: Whenether the config for pleroma-fe is configured in [:frontend_configurations](#frontend_configurations) or in ``static/config.json``.
43 * `allowed_post_formats`: MIME-type list of formats allowed to be posted (transformed into HTML).
44 * `extended_nickname_format`: Set to `true` to use extended local nicknames format (allows underscores/dashes). This will break federation with
45 older software for theses nicknames.
46 * `max_pinned_statuses`: The maximum number of pinned statuses. `0` will disable the feature.
47 * `autofollowed_nicknames`: Set to nicknames of (local) users that every new user should automatically follow.
48 * `attachment_links`: Set to true to enable automatically adding attachment link text to statuses.
49 * `max_report_comment_size`: The maximum size of the report comment (Default: `1000`).
50 * `safe_dm_mentions`: If set to true, only mentions at the beginning of a post will be used to address people in direct messages. This is to prevent accidental mentioning of people when talking about them (e.g. "@friend hey i really don't like @enemy"). Default: `false`.
51 * `healthcheck`: If set to true, system data will be shown on ``/api/pleroma/healthcheck``.
52 * `remote_post_retention_days`: The default amount of days to retain remote posts when pruning the database.
53 * `user_bio_length`: A user bio maximum length (default: `5000`).
54 * `user_name_length`: A user name maximum length (default: `100`).
55 * `skip_thread_containment`: Skip filter out broken threads. The default is `false`.
56 * `limit_to_local_content`: Limit unauthenticated users to search for local statutes and users only. Possible values: `:unauthenticated`, `:all` and `false`. The default is `:unauthenticated`.
57 * `max_account_fields`: The maximum number of custom fields in the user profile (default: `10`).
58 * `max_remote_account_fields`: The maximum number of custom fields in the remote user profile (default: `20`).
59 * `account_field_name_length`: An account field name maximum length (default: `512`).
60 * `account_field_value_length`: An account field value maximum length (default: `2048`).
61 * `external_user_synchronization`: Enabling following/followers counters synchronization for external users.
62 * `cleanup_attachments`: Remove attachments along with statuses. Does not affect duplicate files and attachments without status. Enabling this will increase load to database when deleting statuses on larger instances.
63 * `show_reactions`: Let favourites and emoji reactions be viewed through the API (default: `true`).
64
65 ## Welcome
66 * `direct_message`: - welcome message sent as a direct message.
67 * `enabled`: Enables the send a direct message to a newly registered user. Defaults to `false`.
68 * `sender_nickname`: The nickname of the local user that sends the welcome message.
69 * `message`: A message that will be send to a newly registered users as a direct message.
70 * `email`: - welcome message sent as a email.
71 * `enabled`: Enables the send a welcome email to a newly registered user. Defaults to `false`.
72 * `sender`: The email address or tuple with `{nickname, email}` that will use as sender to the welcome email.
73 * `subject`: A subject of welcome email.
74 * `html`: A html that will be send to a newly registered users as a email.
75 * `text`: A text that will be send to a newly registered users as a email.
76
77 Example:
78
79 ```elixir
80 config :pleroma, :welcome,
81 direct_message: [
82 enabled: true,
83 sender_nickname: "lain",
84 message: "Hi, @username! Welcome on board!"
85 ],
86 email: [
87 enabled: true,
88 sender: {"Pleroma App", "welcome@pleroma.app"},
89 subject: "Welcome to <%= instance_name %>",
90 html: "Welcome to <%= instance_name %>",
91 text: "Welcome to <%= instance_name %>"
92 ]
93 ```
94
95 ## Message rewrite facility
96
97 ### :mrf
98 * `policies`: Message Rewrite Policy, either one or a list. Here are the ones available by default:
99 * `Pleroma.Web.ActivityPub.MRF.NoOpPolicy`: Doesn’t modify activities (default).
100 * `Pleroma.Web.ActivityPub.MRF.DropPolicy`: Drops all activities. It generally doesn’t makes sense to use in production.
101 * `Pleroma.Web.ActivityPub.MRF.SimplePolicy`: Restrict the visibility of activities from certains instances (See [`:mrf_simple`](#mrf_simple)).
102 * `Pleroma.Web.ActivityPub.MRF.TagPolicy`: Applies policies to individual users based on tags, which can be set using pleroma-fe/admin-fe/any other app that supports Pleroma Admin API. For example it allows marking posts from individual users nsfw (sensitive).
103 * `Pleroma.Web.ActivityPub.MRF.SubchainPolicy`: Selectively runs other MRF policies when messages match (See [`:mrf_subchain`](#mrf_subchain)).
104 * `Pleroma.Web.ActivityPub.MRF.RejectNonPublic`: Drops posts with non-public visibility settings (See [`:mrf_rejectnonpublic`](#mrf_rejectnonpublic)).
105 * `Pleroma.Web.ActivityPub.MRF.EnsureRePrepended`: Rewrites posts to ensure that replies to posts with subjects do not have an identical subject and instead begin with re:.
106 * `Pleroma.Web.ActivityPub.MRF.AntiLinkSpamPolicy`: Rejects posts from likely spambots by rejecting posts from new users that contain links.
107 * `Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy`: Crawls attachments using their MediaProxy URLs so that the MediaProxy cache is primed.
108 * `Pleroma.Web.ActivityPub.MRF.MentionPolicy`: Drops posts mentioning configurable users. (See [`:mrf_mention`](#mrf_mention)).
109 * `Pleroma.Web.ActivityPub.MRF.VocabularyPolicy`: Restricts activities to a configured set of vocabulary. (See [`:mrf_vocabulary`](#mrf_vocabulary)).
110 * `Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy`: Rejects or delists posts based on their age when received. (See [`:mrf_object_age`](#mrf_object_age)).
111 * `transparency`: Make the content of your Message Rewrite Facility settings public (via nodeinfo).
112 * `transparency_exclusions`: Exclude specific instance names from MRF transparency. The use of the exclusions feature will be disclosed in nodeinfo as a boolean value.
113
114 ## Federation
115 ### MRF policies
116
117 !!! note
118 Configuring MRF policies is not enough for them to take effect. You have to enable them by specifying their module in `policies` under [:mrf](#mrf) section.
119
120 #### :mrf_simple
121 * `media_removal`: List of instances to remove media from.
122 * `media_nsfw`: List of instances to put media as NSFW(sensitive) from.
123 * `federated_timeline_removal`: List of instances to remove from Federated (aka The Whole Known Network) Timeline.
124 * `reject`: List of instances to reject any activities from.
125 * `accept`: List of instances to accept any activities from.
126 * `report_removal`: List of instances to reject reports from.
127 * `avatar_removal`: List of instances to strip avatars from.
128 * `banner_removal`: List of instances to strip banners from.
129
130 #### :mrf_subchain
131 This policy processes messages through an alternate pipeline when a given message matches certain criteria.
132 All criteria are configured as a map of regular expressions to lists of policy modules.
133
134 * `match_actor`: Matches a series of regular expressions against the actor field.
135
136 Example:
137
138 ```elixir
139 config :pleroma, :mrf_subchain,
140 match_actor: %{
141 ~r/https:\/\/example.com/s => [Pleroma.Web.ActivityPub.MRF.DropPolicy]
142 }
143 ```
144
145 #### :mrf_rejectnonpublic
146 * `allow_followersonly`: whether to allow followers-only posts.
147 * `allow_direct`: whether to allow direct messages.
148
149 #### :mrf_hellthread
150 * `delist_threshold`: Number of mentioned users after which the message gets delisted (the message can still be seen, but it will not show up in public timelines and mentioned users won't get notifications about it). Set to 0 to disable.
151 * `reject_threshold`: Number of mentioned users after which the messaged gets rejected. Set to 0 to disable.
152
153 #### :mrf_keyword
154 * `reject`: A list of patterns which result in message being rejected, each pattern can be a string or a [regular expression](https://hexdocs.pm/elixir/Regex.html).
155 * `federated_timeline_removal`: A list of patterns which result in message being removed from federated timelines (a.k.a unlisted), each pattern can be a string or a [regular expression](https://hexdocs.pm/elixir/Regex.html).
156 * `replace`: A list of tuples containing `{pattern, replacement}`, `pattern` can be a string or a [regular expression](https://hexdocs.pm/elixir/Regex.html).
157
158 #### :mrf_mention
159 * `actors`: A list of actors, for which to drop any posts mentioning.
160
161 #### :mrf_vocabulary
162 * `accept`: A list of ActivityStreams terms to accept. If empty, all supported messages are accepted.
163 * `reject`: A list of ActivityStreams terms to reject. If empty, no messages are rejected.
164
165 #### :mrf_user_allowlist
166
167 The keys in this section are the domain names that the policy should apply to.
168 Each key should be assigned a list of users that should be allowed through by
169 their ActivityPub ID.
170
171 An example:
172
173 ```elixir
174 config :pleroma, :mrf_user_allowlist, %{
175 "example.org" => ["https://example.org/users/admin"]
176 }
177 ```
178
179 #### :mrf_object_age
180 * `threshold`: Required time offset (in seconds) compared to your server clock of an incoming post before actions are taken.
181 e.g., A value of 900 results in any post with a timestamp older than 15 minutes will be acted upon.
182 * `actions`: A list of actions to apply to the post:
183 * `:delist` removes the post from public timelines
184 * `:strip_followers` removes followers from the ActivityPub recipient list, ensuring they won't be delivered to home timelines
185 * `:reject` rejects the message entirely
186
187 #### :mrf_steal_emoji
188 * `hosts`: List of hosts to steal emojis from
189 * `rejected_shortcodes`: Regex-list of shortcodes to reject
190 * `size_limit`: File size limit (in bytes), checked before an emoji is saved to the disk
191
192 #### :mrf_activity_expiration
193
194 * `days`: Default global expiration time for all local Create activities (in days)
195
196 ### :activitypub
197 * `unfollow_blocked`: Whether blocks result in people getting unfollowed
198 * `outgoing_blocks`: Whether to federate blocks to other instances
199 * `deny_follow_blocked`: Whether to disallow following an account that has blocked the user in question
200 * `sign_object_fetches`: Sign object fetches with HTTP signatures
201 * `authorized_fetch_mode`: Require HTTP signatures for AP fetches
202
203 ## Pleroma.ScheduledActivity
204
205 * `daily_user_limit`: the number of scheduled activities a user is allowed to create in a single day (Default: `25`)
206 * `total_user_limit`: the number of scheduled activities a user is allowed to create in total (Default: `300`)
207 * `enabled`: whether scheduled activities are sent to the job queue to be executed
208
209 ## Pleroma.ActivityExpiration
210
211 * `enabled`: whether expired activities will be sent to the job queue to be deleted
212
213 ## Frontends
214
215 ### :frontend_configurations
216
217 This can be used to configure a keyword list that keeps the configuration data for any kind of frontend. By default, settings for `pleroma_fe` and `masto_fe` are configured. You can find the documentation for `pleroma_fe` configuration into [Pleroma-FE configuration and customization for instance administrators](/frontend/CONFIGURATION/#options).
218
219 Frontends can access these settings at `/api/pleroma/frontend_configurations`
220
221 To add your own configuration for PleromaFE, use it like this:
222
223 ```elixir
224 config :pleroma, :frontend_configurations,
225 pleroma_fe: %{
226 theme: "pleroma-dark",
227 # ... see /priv/static/static/config.json for the available keys.
228 },
229 masto_fe: %{
230 showInstanceSpecificPanel: true
231 }
232 ```
233
234 These settings **need to be complete**, they will override the defaults.
235
236 ### :static_fe
237
238 Render profiles and posts using server-generated HTML that is viewable without using JavaScript.
239
240 Available options:
241
242 * `enabled` - Enables the rendering of static HTML. Defaults to `false`.
243
244 ### :assets
245
246 This section configures assets to be used with various frontends. Currently the only option
247 relates to mascots on the mastodon frontend
248
249 * `mascots`: KeywordList of mascots, each element __MUST__ contain both a `url` and a
250 `mime_type` key.
251 * `default_mascot`: An element from `mascots` - This will be used as the default mascot
252 on MastoFE (default: `:pleroma_fox_tan`).
253
254 ### :manifest
255
256 This section describe PWA manifest instance-specific values. Currently this option relate only for MastoFE.
257
258 * `icons`: Describe the icons of the app, this a list of maps describing icons in the same way as the
259 [spec](https://www.w3.org/TR/appmanifest/#imageresource-and-its-members) describes it.
260
261 Example:
262
263 ```elixir
264 config :pleroma, :manifest,
265 icons: [
266 %{
267 src: "/static/logo.png"
268 },
269 %{
270 src: "/static/icon.png",
271 type: "image/png"
272 },
273 %{
274 src: "/static/icon.ico",
275 sizes: "72x72 96x96 128x128 256x256"
276 }
277 ]
278 ```
279
280 * `theme_color`: Describe the theme color of the app. (Example: `"#282c37"`, `"rebeccapurple"`).
281 * `background_color`: Describe the background color of the app. (Example: `"#191b22"`, `"aliceblue"`).
282
283 ## :emoji
284
285 * `shortcode_globs`: Location of custom emoji files. `*` can be used as a wildcard. Example `["/emoji/custom/**/*.png"]`
286 * `pack_extensions`: A list of file extensions for emojis, when no emoji.txt for a pack is present. Example `[".png", ".gif"]`
287 * `groups`: Emojis are ordered in groups (tags). This is an array of key-value pairs where the key is the groupname and the value the location or array of locations. `*` can be used as a wildcard. Example `[Custom: ["/emoji/*.png", "/emoji/custom/*.png"]]`
288 * `default_manifest`: Location of the JSON-manifest. This manifest contains information about the emoji-packs you can download. Currently only one manifest can be added (no arrays).
289 * `shared_pack_cache_seconds_per_file`: When an emoji pack is shared, the archive is created and cached in
290 memory for this amount of seconds multiplied by the number of files.
291
292 ## :media_proxy
293
294 * `enabled`: Enables proxying of remote media to the instance’s proxy
295 * `base_url`: The base URL to access a user-uploaded file. Useful when you want to proxy the media files via another host/CDN fronts.
296 * `proxy_opts`: All options defined in `Pleroma.ReverseProxy` documentation, defaults to `[max_body_length: (25*1_048_576)]`.
297 * `whitelist`: List of hosts with scheme to bypass the mediaproxy (e.g. `https://example.com`)
298 * `invalidation`: options for remove media from cache after delete object:
299 * `enabled`: Enables purge cache
300 * `provider`: Which one of the [purge cache strategy](#purge-cache-strategy) to use.
301
302 ### Purge cache strategy
303
304 #### Pleroma.Web.MediaProxy.Invalidation.Script
305
306 This strategy allow perform external shell script to purge cache.
307 Urls of attachments pass to script as arguments.
308
309 * `script_path`: path to external script.
310
311 Example:
312
313 ```elixir
314 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script,
315 script_path: "./installation/nginx-cache-purge.example"
316 ```
317
318 #### Pleroma.Web.MediaProxy.Invalidation.Http
319
320 This strategy allow perform custom http request to purge cache.
321
322 * `method`: http method. default is `purge`
323 * `headers`: http headers.
324 * `options`: request options.
325
326 Example:
327 ```elixir
328 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
329 method: :purge,
330 headers: [],
331 options: []
332 ```
333
334 ## Link previews
335
336 ### Pleroma.Web.Metadata (provider)
337 * `providers`: a list of metadata providers to enable. Providers available:
338 * `Pleroma.Web.Metadata.Providers.OpenGraph`
339 * `Pleroma.Web.Metadata.Providers.TwitterCard`
340 * `Pleroma.Web.Metadata.Providers.RelMe` - add links from user bio with rel=me into the `<header>` as `<link rel=me>`.
341 * `Pleroma.Web.Metadata.Providers.Feed` - add a link to a user's Atom feed into the `<header>` as `<link rel=alternate>`.
342 * `unfurl_nsfw`: If set to `true` nsfw attachments will be shown in previews.
343
344 ### :rich_media (consumer)
345 * `enabled`: if enabled the instance will parse metadata from attached links to generate link previews.
346 * `ignore_hosts`: list of hosts which will be ignored by the metadata parser. For example `["accounts.google.com", "xss.website"]`, defaults to `[]`.
347 * `ignore_tld`: list TLDs (top-level domains) which will ignore for parse metadata. default is ["local", "localdomain", "lan"].
348 * `parsers`: list of Rich Media parsers.
349
350 ## HTTP server
351
352 ### Pleroma.Web.Endpoint
353
354 !!! note
355 `Phoenix` endpoint configuration, all configuration options can be viewed [here](https://hexdocs.pm/phoenix/Phoenix.Endpoint.html#module-dynamic-configuration), only common options are listed here.
356
357 * `http` - a list containing http protocol configuration, all configuration options can be viewed [here](https://hexdocs.pm/plug_cowboy/Plug.Cowboy.html#module-options), only common options are listed here. For deployment using docker, you need to set this to `[ip: {0,0,0,0}, port: 4000]` to make pleroma accessible from other containers (such as your nginx server).
358 - `ip` - a tuple consisting of 4 integers
359 - `port`
360 * `url` - a list containing the configuration for generating urls, accepts
361 - `host` - the host without the scheme and a post (e.g `example.com`, not `https://example.com:2020`)
362 - `scheme` - e.g `http`, `https`
363 - `port`
364 - `path`
365 * `extra_cookie_attrs` - a list of `Key=Value` strings to be added as non-standard cookie attributes. Defaults to `["SameSite=Lax"]`. See the [SameSite article](https://www.owasp.org/index.php/SameSite) on OWASP for more info.
366
367 Example:
368 ```elixir
369 config :pleroma, Pleroma.Web.Endpoint,
370 url: [host: "example.com", port: 2020, scheme: "https"],
371 http: [
372 port: 8080,
373 ip: {127, 0, 0, 1}
374 ]
375 ```
376
377 This will make Pleroma listen on `127.0.0.1` port `8080` and generate urls starting with `https://example.com:2020`
378
379 ### :http_security
380 * ``enabled``: Whether the managed content security policy is enabled.
381 * ``sts``: Whether to additionally send a `Strict-Transport-Security` header.
382 * ``sts_max_age``: The maximum age for the `Strict-Transport-Security` header if sent.
383 * ``ct_max_age``: The maximum age for the `Expect-CT` header if sent.
384 * ``referrer_policy``: The referrer policy to use, either `"same-origin"` or `"no-referrer"`.
385 * ``report_uri``: Adds the specified url to `report-uri` and `report-to` group in CSP header.
386
387 ### Pleroma.Plugs.RemoteIp
388
389 !!! warning
390 If your instance is not behind at least one reverse proxy, you should not enable this plug.
391
392 `Pleroma.Plugs.RemoteIp` is a shim to call [`RemoteIp`](https://git.pleroma.social/pleroma/remote_ip) but with runtime configuration.
393
394 Available options:
395
396 * `enabled` - Enable/disable the plug. Defaults to `false`.
397 * `headers` - A list of strings naming the `req_headers` to use when deriving the `remote_ip`. Order does not matter. Defaults to `["x-forwarded-for"]`.
398 * `proxies` - A list of strings in [CIDR](https://en.wikipedia.org/wiki/CIDR) notation specifying the IPs of known proxies. Defaults to `[]`.
399 * `reserved` - Defaults to [localhost](https://en.wikipedia.org/wiki/Localhost) and [private network](https://en.wikipedia.org/wiki/Private_network).
400
401
402 ### :rate_limit
403
404 !!! note
405 If your instance is behind a reverse proxy ensure [`Pleroma.Plugs.RemoteIp`](#pleroma-plugs-remoteip) is enabled (it is enabled by default).
406
407 A keyword list of rate limiters where a key is a limiter name and value is the limiter configuration. The basic configuration is a tuple where:
408
409 * The first element: `scale` (Integer). The time scale in milliseconds.
410 * The second element: `limit` (Integer). How many requests to limit in the time scale provided.
411
412 It is also possible to have different limits for unauthenticated and authenticated users: the keyword value must be a list of two tuples where the first one is a config for unauthenticated users and the second one is for authenticated.
413
414 For example:
415
416 ```elixir
417 config :pleroma, :rate_limit,
418 authentication: {60_000, 15},
419 search: [{1000, 10}, {1000, 30}]
420 ```
421
422 Means that:
423
424 1. In 60 seconds, 15 authentication attempts can be performed from the same IP address.
425 2. In 1 second, 10 search requests can be performed from the same IP adress by unauthenticated users, while authenticated users can perform 30 search requests per second.
426
427 Supported rate limiters:
428
429 * `:search` - Account/Status search.
430 * `:timeline` - Timeline requests (each timeline has it's own limiter).
431 * `:app_account_creation` - Account registration from the API.
432 * `:relations_actions` - Following/Unfollowing in general.
433 * `:relation_id_action` - Following/Unfollowing for a specific user.
434 * `:statuses_actions` - Status actions such as: (un)repeating, (un)favouriting, creating, deleting.
435 * `:status_id_action` - (un)Repeating/(un)Favouriting a particular status.
436 * `:authentication` - Authentication actions, i.e getting an OAuth token.
437 * `:password_reset` - Requesting password reset emails.
438 * `:account_confirmation_resend` - Requesting resending account confirmation emails.
439 * `:ap_routes` - Requesting statuses via ActivityPub.
440
441 ### :web_cache_ttl
442
443 The expiration time for the web responses cache. Values should be in milliseconds or `nil` to disable expiration.
444
445 Available caches:
446
447 * `:activity_pub` - activity pub routes (except question activities). Defaults to `nil` (no expiration).
448 * `:activity_pub_question` - activity pub routes (question activities). Defaults to `30_000` (30 seconds).
449
450 ## HTTP client
451
452 ### :http
453
454 * `proxy_url`: an upstream proxy to fetch posts and/or media with, (default: `nil`)
455 * `send_user_agent`: should we include a user agent with HTTP requests? (default: `true`)
456 * `user_agent`: what user agent should we use? (default: `:default`), must be string or `:default`
457 * `adapter`: array of adapter options
458
459 ### :hackney_pools
460
461 Advanced. Tweaks Hackney (http client) connections pools.
462
463 There's three pools used:
464
465 * `:federation` for the federation jobs.
466 You may want this pool max_connections to be at least equal to the number of federator jobs + retry queue jobs.
467 * `:media` for rich media, media proxy
468 * `:upload` for uploaded media (if using a remote uploader and `proxy_remote: true`)
469
470 For each pool, the options are:
471
472 * `max_connections` - how much connections a pool can hold
473 * `timeout` - retention duration for connections
474
475
476 ### :connections_pool
477
478 *For `gun` adapter*
479
480 Settings for HTTP connection pool.
481
482 * `:connection_acquisition_wait` - Timeout to acquire a connection from pool.The total max time is this value multiplied by the number of retries.
483 * `connection_acquisition_retries` - Number of attempts to acquire the connection from the pool if it is overloaded. Each attempt is timed `:connection_acquisition_wait` apart.
484 * `:max_connections` - Maximum number of connections in the pool.
485 * `:await_up_timeout` - Timeout to connect to the host.
486 * `:reclaim_multiplier` - Multiplied by `:max_connections` this will be the maximum number of idle connections that will be reclaimed in case the pool is overloaded.
487
488 ### :pools
489
490 *For `gun` adapter*
491
492 Settings for request pools. These pools are limited on top of `:connections_pool`.
493
494 There are four pools used:
495
496 * `:federation` for the federation jobs. You may want this pool's max_connections to be at least equal to the number of federator jobs + retry queue jobs.
497 * `:media` - for rich media, media proxy.
498 * `:upload` - for proxying media when a remote uploader is used and `proxy_remote: true`.
499 * `:default` - for other requests.
500
501 For each pool, the options are:
502
503 * `:size` - limit to how much requests can be concurrently executed.
504 * `:timeout` - timeout while `gun` will wait for response
505 * `:max_waiting` - limit to how much requests can be waiting for others to finish, after this is reached, subsequent requests will be dropped.
506
507 ## Captcha
508
509 ### Pleroma.Captcha
510
511 * `enabled`: Whether the captcha should be shown on registration.
512 * `method`: The method/service to use for captcha.
513 * `seconds_valid`: The time in seconds for which the captcha is valid.
514
515 ### Captcha providers
516
517 #### Pleroma.Captcha.Native
518
519 A built-in captcha provider. Enabled by default.
520
521 #### Pleroma.Captcha.Kocaptcha
522
523 Kocaptcha is a very simple captcha service with a single API endpoint,
524 the source code is here: [kocaptcha](https://github.com/koto-bank/kocaptcha). The default endpoint
525 `https://captcha.kotobank.ch` is hosted by the developer.
526
527 * `endpoint`: the Kocaptcha endpoint to use.
528
529 ## Uploads
530
531 ### Pleroma.Upload
532
533 * `uploader`: Which one of the [uploaders](#uploaders) to use.
534 * `filters`: List of [upload filters](#upload-filters) to use.
535 * `link_name`: When enabled Pleroma will add a `name` parameter to the url of the upload, for example `https://instance.tld/media/corndog.png?name=corndog.png`. This is needed to provide the correct filename in Content-Disposition headers when using filters like `Pleroma.Upload.Filter.Dedupe`
536 * `base_url`: The base URL to access a user-uploaded file. Useful when you want to proxy the media files via another host.
537 * `proxy_remote`: If you're using a remote uploader, Pleroma will proxy media requests instead of redirecting to it.
538 * `proxy_opts`: Proxy options, see `Pleroma.ReverseProxy` documentation.
539 * `filename_display_max_length`: Set max length of a filename to display. 0 = no limit. Default: 30.
540
541 !!! warning
542 `strip_exif` has been replaced by `Pleroma.Upload.Filter.Mogrify`.
543
544 ### Uploaders
545
546 #### Pleroma.Uploaders.Local
547
548 * `uploads`: Which directory to store the user-uploads in, relative to pleroma’s working directory.
549
550 #### Pleroma.Uploaders.S3
551
552 Don't forget to configure [Ex AWS S3](#ex-aws-s3-settings)
553
554 * `bucket`: S3 bucket name.
555 * `bucket_namespace`: S3 bucket namespace.
556 * `public_endpoint`: S3 endpoint that the user finally accesses(ex. "https://s3.dualstack.ap-northeast-1.amazonaws.com")
557 * `truncated_namespace`: If you use S3 compatible service such as Digital Ocean Spaces or CDN, set folder name or "" etc.
558 For example, when using CDN to S3 virtual host format, set "".
559 At this time, write CNAME to CDN in public_endpoint.
560 * `streaming_enabled`: Enable streaming uploads, when enabled the file will be sent to the server in chunks as it's being read. This may be unsupported by some providers, try disabling this if you have upload problems.
561
562 #### Ex AWS S3 settings
563
564 * `access_key_id`: Access key ID
565 * `secret_access_key`: Secret access key
566 * `host`: S3 host
567
568 Example:
569
570 ```elixir
571 config :ex_aws, :s3,
572 access_key_id: "xxxxxxxxxx",
573 secret_access_key: "yyyyyyyyyy",
574 host: "s3.eu-central-1.amazonaws.com"
575 ```
576
577 ### Upload filters
578
579 #### Pleroma.Upload.Filter.AnonymizeFilename
580
581 This filter replaces the filename (not the path) of an upload. For complete obfuscation, add
582 `Pleroma.Upload.Filter.Dedupe` before AnonymizeFilename.
583
584 * `text`: Text to replace filenames in links. If empty, `{random}.extension` will be used. You can get the original filename extension by using `{extension}`, for example `custom-file-name.{extension}`.
585
586 #### Pleroma.Upload.Filter.Dedupe
587
588 No specific configuration.
589
590 #### Pleroma.Upload.Filter.Exiftool
591
592 This filter only strips the GPS and location metadata with Exiftool leaving color profiles and attributes intact.
593
594 No specific configuration.
595
596 #### Pleroma.Upload.Filter.Mogrify
597
598 * `args`: List of actions for the `mogrify` command like `"strip"` or `["strip", "auto-orient", {"implode", "1"}]`.
599
600 ## Email
601
602 ### Pleroma.Emails.Mailer
603 * `adapter`: one of the mail adapters listed in [Swoosh readme](https://github.com/swoosh/swoosh#adapters), or `Swoosh.Adapters.Local` for in-memory mailbox.
604 * `api_key` / `password` and / or other adapter-specific settings, per the above documentation.
605 * `enabled`: Allows enable/disable send emails. Default: `false`.
606
607 An example for Sendgrid adapter:
608
609 ```elixir
610 config :pleroma, Pleroma.Emails.Mailer,
611 enabled: true,
612 adapter: Swoosh.Adapters.Sendgrid,
613 api_key: "YOUR_API_KEY"
614 ```
615
616 An example for SMTP adapter:
617
618 ```elixir
619 config :pleroma, Pleroma.Emails.Mailer,
620 enabled: true,
621 adapter: Swoosh.Adapters.SMTP,
622 relay: "smtp.gmail.com",
623 username: "YOUR_USERNAME@gmail.com",
624 password: "YOUR_SMTP_PASSWORD",
625 port: 465,
626 ssl: true,
627 auth: :always
628 ```
629
630 ### :email_notifications
631
632 Email notifications settings.
633
634 - digest - emails of "what you've missed" for users who have been
635 inactive for a while.
636 - active: globally enable or disable digest emails
637 - schedule: When to send digest email, in [crontab format](https://en.wikipedia.org/wiki/Cron).
638 "0 0 * * 0" is the default, meaning "once a week at midnight on Sunday morning"
639 - interval: Minimum interval between digest emails to one user
640 - inactivity_threshold: Minimum user inactivity threshold
641
642 ### Pleroma.Emails.UserEmail
643
644 - `:logo` - a path to a custom logo. Set it to `nil` to use the default Pleroma logo.
645 - `:styling` - a map with color settings for email templates.
646
647 ### Pleroma.Emails.NewUsersDigestEmail
648
649 - `:enabled` - a boolean, enables new users admin digest email when `true`. Defaults to `false`.
650
651 ## Background jobs
652
653 ### Oban
654
655 [Oban](https://github.com/sorentwo/oban) asynchronous job processor configuration.
656
657 Configuration options described in [Oban readme](https://github.com/sorentwo/oban#usage):
658
659 * `repo` - app's Ecto repo (`Pleroma.Repo`)
660 * `log` - logs verbosity
661 * `queues` - job queues (see below)
662 * `crontab` - periodic jobs, see [`Oban.Cron`](#obancron)
663
664 Pleroma has the following queues:
665
666 * `activity_expiration` - Activity expiration
667 * `federator_outgoing` - Outgoing federation
668 * `federator_incoming` - Incoming federation
669 * `mailer` - Email sender, see [`Pleroma.Emails.Mailer`](#pleromaemailsmailer)
670 * `transmogrifier` - Transmogrifier
671 * `web_push` - Web push notifications
672 * `scheduled_activities` - Scheduled activities, see [`Pleroma.ScheduledActivity`](#pleromascheduledactivity)
673
674 #### Oban.Cron
675
676 Pleroma has these periodic job workers:
677
678 `Pleroma.Workers.Cron.ClearOauthTokenWorker` - a job worker to cleanup expired oauth tokens.
679
680 Example:
681
682 ```elixir
683 config :pleroma, Oban,
684 repo: Pleroma.Repo,
685 verbose: false,
686 prune: {:maxlen, 1500},
687 queues: [
688 federator_incoming: 50,
689 federator_outgoing: 50
690 ],
691 crontab: [
692 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker}
693 ]
694 ```
695
696 This config contains two queues: `federator_incoming` and `federator_outgoing`. Both have the number of max concurrent jobs set to `50`.
697
698 #### Migrating `pleroma_job_queue` settings
699
700 `config :pleroma_job_queue, :queues` is replaced by `config :pleroma, Oban, :queues` and uses the same format (keys are queues' names, values are max concurrent jobs numbers).
701
702 ### :workers
703
704 Includes custom worker options not interpretable directly by `Oban`.
705
706 * `retries` — keyword lists where keys are `Oban` queues (see above) and values are numbers of max attempts for failed jobs.
707
708 Example:
709
710 ```elixir
711 config :pleroma, :workers,
712 retries: [
713 federator_incoming: 5,
714 federator_outgoing: 5
715 ]
716 ```
717
718 #### Migrating `Pleroma.Web.Federator.RetryQueue` settings
719
720 * `max_retries` is replaced with `config :pleroma, :workers, retries: [federator_outgoing: 5]`
721 * `enabled: false` corresponds to `config :pleroma, :workers, retries: [federator_outgoing: 1]`
722 * deprecated options: `max_jobs`, `initial_timeout`
723
724 ## :web_push_encryption, :vapid_details
725
726 Web Push Notifications configuration. You can use the mix task `mix web_push.gen.keypair` to generate it.
727
728 * ``subject``: a mailto link for the administrative contact. It’s best if this email is not a personal email address, but rather a group email so that if a person leaves an organization, is unavailable for an extended period, or otherwise can’t respond, someone else on the list can.
729 * ``public_key``: VAPID public key
730 * ``private_key``: VAPID private key
731
732 ## :logger
733 * `backends`: `:console` is used to send logs to stdout, `{ExSyslogger, :ex_syslogger}` to log to syslog, and `Quack.Logger` to log to Slack
734
735 An example to enable ONLY ExSyslogger (f/ex in ``prod.secret.exs``) with info and debug suppressed:
736 ```elixir
737 config :logger,
738 backends: [{ExSyslogger, :ex_syslogger}]
739
740 config :logger, :ex_syslogger,
741 level: :warn
742 ```
743
744 Another example, keeping console output and adding the pid to syslog output:
745 ```elixir
746 config :logger,
747 backends: [:console, {ExSyslogger, :ex_syslogger}]
748
749 config :logger, :ex_syslogger,
750 level: :warn,
751 option: [:pid, :ndelay]
752 ```
753
754 See: [logger’s documentation](https://hexdocs.pm/logger/Logger.html) and [ex_syslogger’s documentation](https://hexdocs.pm/ex_syslogger/)
755
756 An example of logging info to local syslog, but warn to a Slack channel:
757 ```elixir
758 config :logger,
759 backends: [ {ExSyslogger, :ex_syslogger}, Quack.Logger ],
760 level: :info
761
762 config :logger, :ex_syslogger,
763 level: :info,
764 ident: "pleroma",
765 format: "$metadata[$level] $message"
766
767 config :quack,
768 level: :warn,
769 meta: [:all],
770 webhook_url: "https://hooks.slack.com/services/YOUR-API-KEY-HERE"
771 ```
772
773 See the [Quack Github](https://github.com/azohra/quack) for more details
774
775
776
777 ## Database options
778
779 ### RUM indexing for full text search
780
781 !!! warning
782 It is recommended to use PostgreSQL v11 or newer. We have seen some minor issues with lower PostgreSQL versions.
783
784 * `rum_enabled`: If RUM indexes should be used. Defaults to `false`.
785
786 RUM indexes are an alternative indexing scheme that is not included in PostgreSQL by default. While they may eventually be mainlined, for now they have to be installed as a PostgreSQL extension from https://github.com/postgrespro/rum.
787
788 Their advantage over the standard GIN indexes is that they allow efficient ordering of search results by timestamp, which makes search queries a lot faster on larger servers, by one or two orders of magnitude. They take up around 3 times as much space as GIN indexes.
789
790 To enable them, both the `rum_enabled` flag has to be set and the following special migration has to be run:
791
792 `mix ecto.migrate --migrations-path priv/repo/optional_migrations/rum_indexing/`
793
794 This will probably take a long time.
795
796 ## Alternative client protocols
797
798 ### BBS / SSH access
799
800 To enable simple command line interface accessible over ssh, add a setting like this to your configuration file:
801
802 ```exs
803 app_dir = File.cwd!
804 priv_dir = Path.join([app_dir, "priv/ssh_keys"])
805
806 config :esshd,
807 enabled: true,
808 priv_dir: priv_dir,
809 handler: "Pleroma.BBS.Handler",
810 port: 10_022,
811 password_authenticator: "Pleroma.BBS.Authenticator"
812 ```
813
814 Feel free to adjust the priv_dir and port number. Then you will have to create the key for the keys (in the example `priv/ssh_keys`) and create the host keys with `ssh-keygen -m PEM -N "" -b 2048 -t rsa -f ssh_host_rsa_key`. After restarting, you should be able to connect to your Pleroma instance with `ssh username@server -p $PORT`
815
816 ### :gopher
817 * `enabled`: Enables the gopher interface
818 * `ip`: IP address to bind to
819 * `port`: Port to bind to
820 * `dstport`: Port advertised in urls (optional, defaults to `port`)
821
822
823 ## Authentication
824
825 ### :admin_token
826
827 Allows to set a token that can be used to authenticate with the admin api without using an actual user by giving it as the `admin_token` parameter or `x-admin-token` HTTP header. Example:
828
829 ```elixir
830 config :pleroma, :admin_token, "somerandomtoken"
831 ```
832
833 You can then do
834
835 ```shell
836 curl "http://localhost:4000/api/pleroma/admin/users/invites?admin_token=somerandomtoken"
837 ```
838
839 or
840
841 ```shell
842 curl -H "X-Admin-Token: somerandomtoken" "http://localhost:4000/api/pleroma/admin/users/invites"
843 ```
844
845 Warning: it's discouraged to use this feature because of the associated security risk: static / rarely changed instance-wide token is much weaker compared to email-password pair of a real admin user; consider using HTTP Basic Auth or OAuth-based authentication instead.
846
847 ### :auth
848
849 * `Pleroma.Web.Auth.PleromaAuthenticator`: default database authenticator.
850 * `Pleroma.Web.Auth.LDAPAuthenticator`: LDAP authentication.
851
852 Authentication / authorization settings.
853
854 * `auth_template`: authentication form template. By default it's `show.html` which corresponds to `lib/pleroma/web/templates/o_auth/o_auth/show.html.eex`.
855 * `oauth_consumer_template`: OAuth consumer mode authentication form template. By default it's `consumer.html` which corresponds to `lib/pleroma/web/templates/o_auth/o_auth/consumer.html.eex`.
856 * `oauth_consumer_strategies`: the list of enabled OAuth consumer strategies; by default it's set by `OAUTH_CONSUMER_STRATEGIES` environment variable. Each entry in this space-delimited string should be of format `<strategy>` or `<strategy>:<dependency>` (e.g. `twitter` or `keycloak:ueberauth_keycloak_strategy` in case dependency is named differently than `ueberauth_<strategy>`).
857
858 ### Pleroma.Web.Auth.Authenticator
859
860 * `Pleroma.Web.Auth.PleromaAuthenticator`: default database authenticator.
861 * `Pleroma.Web.Auth.LDAPAuthenticator`: LDAP authentication.
862
863 ### :ldap
864
865 Use LDAP for user authentication. When a user logs in to the Pleroma
866 instance, the name and password will be verified by trying to authenticate
867 (bind) to an LDAP server. If a user exists in the LDAP directory but there
868 is no account with the same name yet on the Pleroma instance then a new
869 Pleroma account will be created with the same name as the LDAP user name.
870
871 * `enabled`: enables LDAP authentication
872 * `host`: LDAP server hostname
873 * `port`: LDAP port, e.g. 389 or 636
874 * `ssl`: true to use SSL, usually implies the port 636
875 * `sslopts`: additional SSL options
876 * `tls`: true to start TLS, usually implies the port 389
877 * `tlsopts`: additional TLS options
878 * `base`: LDAP base, e.g. "dc=example,dc=com"
879 * `uid`: LDAP attribute name to authenticate the user, e.g. when "cn", the filter will be "cn=username,base"
880
881 ### OAuth consumer mode
882
883 OAuth consumer mode allows sign in / sign up via external OAuth providers (e.g. Twitter, Facebook, Google, Microsoft, etc.).
884 Implementation is based on Ueberauth; see the list of [available strategies](https://github.com/ueberauth/ueberauth/wiki/List-of-Strategies).
885
886 !!! note
887 Each strategy is shipped as a separate dependency; in order to get the strategies, run `OAUTH_CONSUMER_STRATEGIES="..." mix deps.get`, e.g. `OAUTH_CONSUMER_STRATEGIES="twitter facebook google microsoft" mix deps.get`. The server should also be started with `OAUTH_CONSUMER_STRATEGIES="..." mix phx.server` in case you enable any strategies.
888
889 !!! note
890 Each strategy requires separate setup (on external provider side and Pleroma side). Below are the guidelines on setting up most popular strategies.
891
892 !!! note
893 Make sure that `"SameSite=Lax"` is set in `extra_cookie_attrs` when you have this feature enabled. OAuth consumer mode will not work with `"SameSite=Strict"`
894
895 * For Twitter, [register an app](https://developer.twitter.com/en/apps), configure callback URL to https://<your_host>/oauth/twitter/callback
896
897 * For Facebook, [register an app](https://developers.facebook.com/apps), configure callback URL to https://<your_host>/oauth/facebook/callback, enable Facebook Login service at https://developers.facebook.com/apps/<app_id>/fb-login/settings/
898
899 * For Google, [register an app](https://console.developers.google.com), configure callback URL to https://<your_host>/oauth/google/callback
900
901 * For Microsoft, [register an app](https://portal.azure.com), configure callback URL to https://<your_host>/oauth/microsoft/callback
902
903 Once the app is configured on external OAuth provider side, add app's credentials and strategy-specific settings (if any — e.g. see Microsoft below) to `config/prod.secret.exs`,
904 per strategy's documentation (e.g. [ueberauth_twitter](https://github.com/ueberauth/ueberauth_twitter)). Example config basing on environment variables:
905
906 ```elixir
907 # Twitter
908 config :ueberauth, Ueberauth.Strategy.Twitter.OAuth,
909 consumer_key: System.get_env("TWITTER_CONSUMER_KEY"),
910 consumer_secret: System.get_env("TWITTER_CONSUMER_SECRET")
911
912 # Facebook
913 config :ueberauth, Ueberauth.Strategy.Facebook.OAuth,
914 client_id: System.get_env("FACEBOOK_APP_ID"),
915 client_secret: System.get_env("FACEBOOK_APP_SECRET"),
916 redirect_uri: System.get_env("FACEBOOK_REDIRECT_URI")
917
918 # Google
919 config :ueberauth, Ueberauth.Strategy.Google.OAuth,
920 client_id: System.get_env("GOOGLE_CLIENT_ID"),
921 client_secret: System.get_env("GOOGLE_CLIENT_SECRET"),
922 redirect_uri: System.get_env("GOOGLE_REDIRECT_URI")
923
924 # Microsoft
925 config :ueberauth, Ueberauth.Strategy.Microsoft.OAuth,
926 client_id: System.get_env("MICROSOFT_CLIENT_ID"),
927 client_secret: System.get_env("MICROSOFT_CLIENT_SECRET")
928
929 config :ueberauth, Ueberauth,
930 providers: [
931 microsoft: {Ueberauth.Strategy.Microsoft, [callback_params: []]}
932 ]
933
934 # Keycloak
935 # Note: make sure to add `keycloak:ueberauth_keycloak_strategy` entry to `OAUTH_CONSUMER_STRATEGIES` environment variable
936 keycloak_url = "https://publicly-reachable-keycloak-instance.org:8080"
937
938 config :ueberauth, Ueberauth.Strategy.Keycloak.OAuth,
939 client_id: System.get_env("KEYCLOAK_CLIENT_ID"),
940 client_secret: System.get_env("KEYCLOAK_CLIENT_SECRET"),
941 site: keycloak_url,
942 authorize_url: "#{keycloak_url}/auth/realms/master/protocol/openid-connect/auth",
943 token_url: "#{keycloak_url}/auth/realms/master/protocol/openid-connect/token",
944 userinfo_url: "#{keycloak_url}/auth/realms/master/protocol/openid-connect/userinfo",
945 token_method: :post
946
947 config :ueberauth, Ueberauth,
948 providers: [
949 keycloak: {Ueberauth.Strategy.Keycloak, [uid_field: :email]}
950 ]
951 ```
952
953 ### OAuth 2.0 provider - :oauth2
954
955 Configure OAuth 2 provider capabilities:
956
957 * `token_expires_in` - The lifetime in seconds of the access token.
958 * `issue_new_refresh_token` - Keeps old refresh token or generate new refresh token when to obtain an access token.
959 * `clean_expired_tokens` - Enable a background job to clean expired oauth tokens. Defaults to `false`. Interval settings sets in configuration periodic jobs [`Oban.Cron`](#obancron)
960
961 ## Link parsing
962
963 ### :uri_schemes
964 * `valid_schemes`: List of the scheme part that is considered valid to be an URL.
965
966 ### Pleroma.Formatter
967
968 Configuration for Pleroma's link formatter which parses mentions, hashtags, and URLs.
969
970 * `class` - specify the class to be added to the generated link (default: `false`)
971 * `rel` - specify the rel attribute (default: `ugc`)
972 * `new_window` - adds `target="_blank"` attribute (default: `false`)
973 * `truncate` - Set to a number to truncate URLs longer then the number. Truncated URLs will end in `...` (default: `false`)
974 * `strip_prefix` - Strip the scheme prefix (default: `false`)
975 * `extra` - link URLs with rarely used schemes (magnet, ipfs, irc, etc.) (default: `true`)
976 * `validate_tld` - Set to false to disable TLD validation for URLs/emails. Can be set to :no_scheme to validate TLDs only for urls without a scheme (e.g `example.com` will be validated, but `http://example.loki` won't) (default: `:no_scheme`)
977
978 Example:
979
980 ```elixir
981 config :pleroma, Pleroma.Formatter,
982 class: false,
983 rel: "ugc",
984 new_window: false,
985 truncate: false,
986 strip_prefix: false,
987 extra: true,
988 validate_tld: :no_scheme
989 ```
990
991 ## Custom Runtime Modules (`:modules`)
992
993 * `runtime_dir`: A path to custom Elixir modules (such as MRF policies).
994
995 ## :configurable_from_database
996
997 Boolean, enables/disables in-database configuration. Read [Transfering the config to/from the database](../administration/CLI_tasks/config.md) for more information.
998
999 ## :database_config_whitelist
1000
1001 List of valid configuration sections which are allowed to be configured from the
1002 database. Settings stored in the database before the whitelist is configured are
1003 still applied, so it is suggested to only use the whitelist on instances that
1004 have not migrated the config to the database.
1005
1006 Example:
1007 ```elixir
1008 config :pleroma, :database_config_whitelist, [
1009 {:pleroma, :instance},
1010 {:pleroma, Pleroma.Web.Metadata},
1011 {:auto_linker}
1012 ]
1013 ```
1014
1015 ### Multi-factor authentication - :two_factor_authentication
1016 * `totp` - a list containing TOTP configuration
1017 - `digits` - Determines the length of a one-time pass-code in characters. Defaults to 6 characters.
1018 - `period` - a period for which the TOTP code will be valid in seconds. Defaults to 30 seconds.
1019 * `backup_codes` - a list containing backup codes configuration
1020 - `number` - number of backup codes to generate.
1021 - `length` - backup code length. Defaults to 16 characters.
1022
1023 ## Restrict entities access for unauthenticated users
1024
1025 ### :restrict_unauthenticated
1026
1027 Restrict access for unauthenticated users to timelines (public and federated), user profiles and statuses.
1028
1029 * `timelines`: public and federated timelines
1030 * `local`: public timeline
1031 * `federated`: federated timeline (includes public timeline)
1032 * `profiles`: user profiles
1033 * `local`
1034 * `remote`
1035 * `activities`: statuses
1036 * `local`
1037 * `remote`
1038
1039 Note: setting `restrict_unauthenticated/timelines/local` to `true` has no practical sense if `restrict_unauthenticated/timelines/federated` is set to `false` (since local public activities will still be delivered to unauthenticated users as part of federated timeline).
1040
1041 ## Pleroma.Web.ApiSpec.CastAndValidate
1042
1043 * `:strict` a boolean, enables strict input validation (useful in development, not recommended in production). Defaults to `false`.
1044
1045 ## :instances_favicons
1046
1047 Control favicons for instances.
1048
1049 * `enabled`: Allow/disallow displaying and getting instances favicons
1050
1051 ## Frontend management
1052
1053 Frontends in Pleroma are swappable - you can specify which one to use here.
1054
1055 For now, you can set a frontend with the key `primary` and the options of `name` and `ref`. This will then make Pleroma serve the frontend from a folder constructed by concatenating the instance static path, `frontends` and the name and ref.
1056
1057 The key `primary` refers to the frontend that will be served by default for general requests. In the future, other frontends like the admin frontend will also be configurable here.
1058
1059 If you don't set anything here, the bundled frontend will be used.
1060
1061 Example:
1062
1063 ```
1064 config :pleroma, :frontends,
1065 primary: %{
1066 "name" => "pleroma",
1067 "ref" => "stable"
1068 }
1069 ```
1070
1071 This would serve the frontend from the the folder at `$instance_static/frontends/pleroma/stable`. You have to copy the frontend into this folder yourself. You can choose the name and ref any way you like, but they will be used by mix tasks to automate installation in the future, the name referring to the project and the ref referring to a commit.