Merge remote-tracking branch 'upstream/develop' into by-approval
[akkoma] / config / config.exs
1 # .i;;;;i.
2 # iYcviii;vXY:
3 # .YXi .i1c.
4 # .YC. . in7.
5 # .vc. ...... ;1c.
6 # i7, .. .;1;
7 # i7, .. ... .Y1i
8 # ,7v .6MMM@; .YX,
9 # .7;. ..IMMMMMM1 :t7.
10 # .;Y. ;$MMMMMM9. :tc.
11 # vY. .. .nMMM@MMU. ;1v.
12 # i7i ... .#MM@M@C. .....:71i
13 # it: .... $MMM@9;.,i;;;i,;tti
14 # :t7. ..... 0MMMWv.,iii:::,,;St.
15 # .nC. ..... IMMMQ..,::::::,.,czX.
16 # .ct: ....... .ZMMMI..,:::::::,,:76Y.
17 # c2: ......,i..Y$M@t..:::::::,,..inZY
18 # vov ......:ii..c$MBc..,,,,,,,,,,..iI9i
19 # i9Y ......iii:..7@MA,..,,,,,,,,,....;AA:
20 # iIS. ......:ii::..;@MI....,............;Ez.
21 # .I9. ......:i::::...8M1..................C0z.
22 # .z9; ......:i::::,.. .i:...................zWX.
23 # vbv ......,i::::,,. ................. :AQY
24 # c6Y. .,...,::::,,..:t0@@QY. ................ :8bi
25 # :6S. ..,,...,:::,,,..EMMMMMMI. ............... .;bZ,
26 # :6o, .,,,,..:::,,,..i#MMMMMM#v................. YW2.
27 # .n8i ..,,,,,,,::,,,,.. tMMMMM@C:.................. .1Wn
28 # 7Uc. .:::,,,,,::,,,,.. i1t;,..................... .UEi
29 # 7C...::::::::::::,,,,.. .................... vSi.
30 # ;1;...,,::::::,......... .................. Yz:
31 # v97,......... .voC.
32 # izAotX7777777777777777777777777777777777777777Y7n92:
33 # .;CoIIIIIUAA666666699999ZZZZZZZZZZZZZZZZZZZZ6ov.
34 #
35 # !!! ATTENTION !!!
36 # DO NOT EDIT THIS FILE! THIS FILE CONTAINS THE DEFAULT VALUES FOR THE CON-
37 # FIGURATION! EDIT YOUR SECRET FILE (either prod.secret.exs, dev.secret.exs).
38 #
39 # This file is responsible for configuring your application
40 # and its dependencies with the aid of the Mix.Config module.
41 #
42 # This configuration file is loaded before any dependency and
43 # is restricted to this project.
44 use Mix.Config
45
46 # General application configuration
47 config :pleroma, ecto_repos: [Pleroma.Repo]
48
49 config :pleroma, Pleroma.Repo,
50 types: Pleroma.PostgresTypes,
51 telemetry_event: [Pleroma.Repo.Instrumenter],
52 migration_lock: nil
53
54 config :pleroma, Pleroma.Captcha,
55 enabled: true,
56 seconds_valid: 300,
57 method: Pleroma.Captcha.Native
58
59 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
60
61 # Upload configuration
62 config :pleroma, Pleroma.Upload,
63 uploader: Pleroma.Uploaders.Local,
64 filters: [Pleroma.Upload.Filter.Dedupe],
65 link_name: false,
66 proxy_remote: false,
67 proxy_opts: [
68 redirect_on_failure: false,
69 max_body_length: 25 * 1_048_576,
70 http: [
71 follow_redirect: true,
72 pool: :upload
73 ]
74 ],
75 filename_display_max_length: 30
76
77 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
78
79 config :pleroma, Pleroma.Uploaders.S3,
80 bucket: nil,
81 streaming_enabled: true,
82 public_endpoint: "https://s3.amazonaws.com"
83
84 config :pleroma, :emoji,
85 shortcode_globs: ["/emoji/custom/**/*.png"],
86 pack_extensions: [".png", ".gif"],
87 groups: [
88 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
89 ],
90 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
91 shared_pack_cache_seconds_per_file: 60
92
93 config :pleroma, :uri_schemes,
94 valid_schemes: [
95 "https",
96 "http",
97 "dat",
98 "dweb",
99 "gopher",
100 "hyper",
101 "ipfs",
102 "ipns",
103 "irc",
104 "ircs",
105 "magnet",
106 "mailto",
107 "mumble",
108 "ssb",
109 "xmpp"
110 ]
111
112 websocket_config = [
113 path: "/websocket",
114 serializer: [
115 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
116 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
117 ],
118 timeout: 60_000,
119 transport_log: false,
120 compress: false
121 ]
122
123 # Configures the endpoint
124 config :pleroma, Pleroma.Web.Endpoint,
125 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
126 url: [host: "localhost"],
127 http: [
128 ip: {127, 0, 0, 1},
129 dispatch: [
130 {:_,
131 [
132 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
133 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
134 {Phoenix.Transports.WebSocket,
135 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
136 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
137 ]}
138 ]
139 ],
140 protocol: "https",
141 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
142 signing_salt: "CqaoopA2",
143 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
144 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
145 secure_cookie_flag: true,
146 extra_cookie_attrs: [
147 "SameSite=Lax"
148 ]
149
150 # Configures Elixir's Logger
151 config :logger, :console,
152 level: :debug,
153 format: "\n$time $metadata[$level] $message\n",
154 metadata: [:request_id]
155
156 config :logger, :ex_syslogger,
157 level: :debug,
158 ident: "pleroma",
159 format: "$metadata[$level] $message",
160 metadata: [:request_id]
161
162 config :quack,
163 level: :warn,
164 meta: [:all],
165 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
166
167 config :mime, :types, %{
168 "application/xml" => ["xml"],
169 "application/xrd+xml" => ["xrd+xml"],
170 "application/jrd+json" => ["jrd+json"],
171 "application/activity+json" => ["activity+json"],
172 "application/ld+json" => ["activity+json"]
173 }
174
175 config :tesla, adapter: Tesla.Adapter.Gun
176
177 # Configures http settings, upstream proxy etc.
178 config :pleroma, :http,
179 proxy_url: nil,
180 send_user_agent: true,
181 user_agent: :default,
182 adapter: []
183
184 config :pleroma, :instance,
185 name: "Pleroma",
186 email: "example@example.com",
187 notify_email: "noreply@example.com",
188 description: "Pleroma: An efficient and flexible fediverse server",
189 background_image: "/images/city.jpg",
190 instance_thumbnail: "/instance/thumbnail.jpeg",
191 limit: 5_000,
192 description_limit: 5_000,
193 chat_limit: 5_000,
194 remote_limit: 100_000,
195 upload_limit: 16_000_000,
196 avatar_upload_limit: 2_000_000,
197 background_upload_limit: 4_000_000,
198 banner_upload_limit: 4_000_000,
199 poll_limits: %{
200 max_options: 20,
201 max_option_chars: 200,
202 min_expiration: 0,
203 max_expiration: 365 * 24 * 60 * 60
204 },
205 registrations_open: true,
206 invites_enabled: false,
207 account_activation_required: false,
208 account_approval_required: false,
209 federating: true,
210 federation_incoming_replies_max_depth: 100,
211 federation_reachability_timeout_days: 7,
212 federation_publisher_modules: [
213 Pleroma.Web.ActivityPub.Publisher
214 ],
215 allow_relay: true,
216 public: true,
217 quarantined_instances: [],
218 managed_config: true,
219 static_dir: "instance/static/",
220 allowed_post_formats: [
221 "text/plain",
222 "text/html",
223 "text/markdown",
224 "text/bbcode"
225 ],
226 autofollowed_nicknames: [],
227 max_pinned_statuses: 1,
228 attachment_links: false,
229 welcome_user_nickname: nil,
230 welcome_message: nil,
231 max_report_comment_size: 1000,
232 safe_dm_mentions: false,
233 healthcheck: false,
234 remote_post_retention_days: 90,
235 skip_thread_containment: true,
236 limit_to_local_content: :unauthenticated,
237 user_bio_length: 5000,
238 user_name_length: 100,
239 max_account_fields: 10,
240 max_remote_account_fields: 20,
241 account_field_name_length: 512,
242 account_field_value_length: 2048,
243 external_user_synchronization: true,
244 extended_nickname_format: true,
245 cleanup_attachments: false,
246 multi_factor_authentication: [
247 totp: [
248 # digits 6 or 8
249 digits: 6,
250 period: 30
251 ],
252 backup_codes: [
253 number: 5,
254 length: 16
255 ]
256 ]
257
258 config :pleroma, :feed,
259 post_title: %{
260 max_length: 100,
261 omission: "..."
262 }
263
264 config :pleroma, :markup,
265 # XXX - unfortunately, inline images must be enabled by default right now, because
266 # of custom emoji. Issue #275 discusses defanging that somehow.
267 allow_inline_images: true,
268 allow_headings: false,
269 allow_tables: false,
270 allow_fonts: false,
271 scrub_policy: [
272 Pleroma.HTML.Scrubber.Default,
273 Pleroma.HTML.Transform.MediaProxy
274 ]
275
276 config :pleroma, :frontend_configurations,
277 pleroma_fe: %{
278 alwaysShowSubjectInput: true,
279 background: "/images/city.jpg",
280 collapseMessageWithSubject: false,
281 disableChat: false,
282 greentext: false,
283 hideFilteredStatuses: false,
284 hideMutedPosts: false,
285 hidePostStats: false,
286 hideSitename: false,
287 hideUserStats: false,
288 loginMethod: "password",
289 logo: "/static/logo.png",
290 logoMargin: ".1em",
291 logoMask: true,
292 minimalScopesMode: false,
293 noAttachmentLinks: false,
294 nsfwCensorImage: "",
295 postContentType: "text/plain",
296 redirectRootLogin: "/main/friends",
297 redirectRootNoLogin: "/main/all",
298 scopeCopy: true,
299 sidebarRight: false,
300 showFeaturesPanel: true,
301 showInstanceSpecificPanel: false,
302 subjectLineBehavior: "email",
303 theme: "pleroma-dark",
304 webPushNotifications: false
305 },
306 masto_fe: %{
307 showInstanceSpecificPanel: true
308 }
309
310 config :pleroma, :assets,
311 mascots: [
312 pleroma_fox_tan: %{
313 url: "/images/pleroma-fox-tan-smol.png",
314 mime_type: "image/png"
315 },
316 pleroma_fox_tan_shy: %{
317 url: "/images/pleroma-fox-tan-shy.png",
318 mime_type: "image/png"
319 }
320 ],
321 default_mascot: :pleroma_fox_tan
322
323 config :pleroma, :manifest,
324 icons: [
325 %{
326 src: "/static/logo.png",
327 type: "image/png"
328 }
329 ],
330 theme_color: "#282c37",
331 background_color: "#191b22"
332
333 config :pleroma, :activitypub,
334 unfollow_blocked: true,
335 outgoing_blocks: true,
336 follow_handshake_timeout: 500,
337 note_replies_output_limit: 5,
338 sign_object_fetches: true,
339 authorized_fetch_mode: false
340
341 config :pleroma, :streamer,
342 workers: 3,
343 overflow_workers: 2
344
345 config :pleroma, :user, deny_follow_blocked: true
346
347 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
348
349 config :pleroma, :mrf_rejectnonpublic,
350 allow_followersonly: false,
351 allow_direct: false
352
353 config :pleroma, :mrf_hellthread,
354 delist_threshold: 10,
355 reject_threshold: 20
356
357 config :pleroma, :mrf_simple,
358 media_removal: [],
359 media_nsfw: [],
360 federated_timeline_removal: [],
361 report_removal: [],
362 reject: [],
363 accept: [],
364 avatar_removal: [],
365 banner_removal: [],
366 reject_deletes: []
367
368 config :pleroma, :mrf_keyword,
369 reject: [],
370 federated_timeline_removal: [],
371 replace: []
372
373 config :pleroma, :mrf_subchain, match_actor: %{}
374
375 config :pleroma, :mrf_activity_expiration, days: 365
376
377 config :pleroma, :mrf_vocabulary,
378 accept: [],
379 reject: []
380
381 config :pleroma, :mrf_object_age,
382 threshold: 172_800,
383 actions: [:delist, :strip_followers]
384
385 config :pleroma, :rich_media,
386 enabled: true,
387 ignore_hosts: [],
388 ignore_tld: ["local", "localdomain", "lan"],
389 parsers: [
390 Pleroma.Web.RichMedia.Parsers.TwitterCard,
391 Pleroma.Web.RichMedia.Parsers.OEmbed
392 ],
393 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
394
395 config :pleroma, :media_proxy,
396 enabled: false,
397 invalidation: [
398 enabled: false,
399 provider: Pleroma.Web.MediaProxy.Invalidation.Script
400 ],
401 proxy_opts: [
402 redirect_on_failure: false,
403 max_body_length: 25 * 1_048_576,
404 http: [
405 follow_redirect: true,
406 pool: :media
407 ]
408 ],
409 whitelist: []
410
411 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
412 method: :purge,
413 headers: [],
414 options: []
415
416 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script, script_path: nil
417
418 config :pleroma, :chat, enabled: true
419
420 config :phoenix, :format_encoders, json: Jason
421
422 config :phoenix, :json_library, Jason
423
424 config :phoenix, :filter_parameters, ["password", "confirm"]
425
426 config :pleroma, :gopher,
427 enabled: false,
428 ip: {0, 0, 0, 0},
429 port: 9999
430
431 config :pleroma, Pleroma.Web.Metadata,
432 providers: [
433 Pleroma.Web.Metadata.Providers.OpenGraph,
434 Pleroma.Web.Metadata.Providers.TwitterCard,
435 Pleroma.Web.Metadata.Providers.RelMe,
436 Pleroma.Web.Metadata.Providers.Feed
437 ],
438 unfurl_nsfw: false
439
440 config :pleroma, Pleroma.Web.Preload,
441 providers: [
442 Pleroma.Web.Preload.Providers.Instance
443 ]
444
445 config :pleroma, :http_security,
446 enabled: true,
447 sts: false,
448 sts_max_age: 31_536_000,
449 ct_max_age: 2_592_000,
450 referrer_policy: "same-origin"
451
452 config :cors_plug,
453 max_age: 86_400,
454 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
455 expose: [
456 "Link",
457 "X-RateLimit-Reset",
458 "X-RateLimit-Limit",
459 "X-RateLimit-Remaining",
460 "X-Request-Id",
461 "Idempotency-Key"
462 ],
463 credentials: true,
464 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
465
466 config :pleroma, Pleroma.User,
467 restricted_nicknames: [
468 ".well-known",
469 "~",
470 "about",
471 "activities",
472 "api",
473 "auth",
474 "check_password",
475 "dev",
476 "friend-requests",
477 "inbox",
478 "internal",
479 "main",
480 "media",
481 "nodeinfo",
482 "notice",
483 "oauth",
484 "objects",
485 "ostatus_subscribe",
486 "pleroma",
487 "proxy",
488 "push",
489 "registration",
490 "relay",
491 "settings",
492 "status",
493 "tag",
494 "user-search",
495 "user_exists",
496 "users",
497 "web"
498 ]
499
500 config :pleroma, Oban,
501 repo: Pleroma.Repo,
502 log: false,
503 queues: [
504 activity_expiration: 10,
505 federator_incoming: 50,
506 federator_outgoing: 50,
507 web_push: 50,
508 mailer: 10,
509 transmogrifier: 20,
510 scheduled_activities: 10,
511 background: 5,
512 remote_fetcher: 2,
513 attachments_cleanup: 5,
514 new_users_digest: 1
515 ],
516 plugins: [Oban.Plugins.Pruner],
517 crontab: [
518 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
519 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
520 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
521 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
522 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
523 ]
524
525 config :pleroma, :workers,
526 retries: [
527 federator_incoming: 5,
528 federator_outgoing: 5
529 ]
530
531 config :pleroma, Pleroma.Formatter,
532 class: false,
533 rel: "ugc",
534 new_window: false,
535 truncate: false,
536 strip_prefix: false,
537 extra: true,
538 validate_tld: :no_scheme
539
540 config :pleroma, :ldap,
541 enabled: System.get_env("LDAP_ENABLED") == "true",
542 host: System.get_env("LDAP_HOST") || "localhost",
543 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
544 ssl: System.get_env("LDAP_SSL") == "true",
545 sslopts: [],
546 tls: System.get_env("LDAP_TLS") == "true",
547 tlsopts: [],
548 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
549 uid: System.get_env("LDAP_UID") || "cn"
550
551 config :esshd,
552 enabled: false
553
554 oauth_consumer_strategies =
555 System.get_env("OAUTH_CONSUMER_STRATEGIES")
556 |> to_string()
557 |> String.split()
558 |> Enum.map(&hd(String.split(&1, ":")))
559
560 ueberauth_providers =
561 for strategy <- oauth_consumer_strategies do
562 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
563 strategy_module = String.to_atom(strategy_module_name)
564 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
565 end
566
567 config :ueberauth,
568 Ueberauth,
569 base_path: "/oauth",
570 providers: ueberauth_providers
571
572 config :pleroma,
573 :auth,
574 enforce_oauth_admin_scope_usage: true,
575 oauth_consumer_strategies: oauth_consumer_strategies
576
577 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
578
579 config :pleroma, Pleroma.Emails.UserEmail,
580 logo: nil,
581 styling: %{
582 link_color: "#d8a070",
583 background_color: "#2C3645",
584 content_background_color: "#1B2635",
585 header_color: "#d8a070",
586 text_color: "#b9b9ba",
587 text_muted_color: "#b9b9ba"
588 }
589
590 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
591
592 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
593
594 config :pleroma, Pleroma.ScheduledActivity,
595 daily_user_limit: 25,
596 total_user_limit: 300,
597 enabled: true
598
599 config :pleroma, :email_notifications,
600 digest: %{
601 active: false,
602 interval: 7,
603 inactivity_threshold: 7
604 }
605
606 config :pleroma, :oauth2,
607 token_expires_in: 600,
608 issue_new_refresh_token: true,
609 clean_expired_tokens: false
610
611 config :pleroma, :database, rum_enabled: false
612
613 config :pleroma, :env, Mix.env()
614
615 config :http_signatures,
616 adapter: Pleroma.Signature
617
618 config :pleroma, :rate_limit,
619 authentication: {60_000, 15},
620 timeline: {500, 3},
621 search: [{1000, 10}, {1000, 30}],
622 app_account_creation: {1_800_000, 25},
623 relations_actions: {10_000, 10},
624 relation_id_action: {60_000, 2},
625 statuses_actions: {10_000, 15},
626 status_id_action: {60_000, 3},
627 password_reset: {1_800_000, 5},
628 account_confirmation_resend: {8_640_000, 5},
629 ap_routes: {60_000, 15}
630
631 config :pleroma, Pleroma.ActivityExpiration, enabled: true
632
633 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
634
635 config :pleroma, :static_fe, enabled: false
636
637 config :pleroma, :web_cache_ttl,
638 activity_pub: nil,
639 activity_pub_question: 30_000
640
641 config :pleroma, :modules, runtime_dir: "instance/modules"
642
643 config :pleroma, configurable_from_database: false
644
645 config :pleroma, Pleroma.Repo,
646 parameters: [gin_fuzzy_search_limit: "500"],
647 prepare: :unnamed
648
649 config :pleroma, :connections_pool,
650 reclaim_multiplier: 0.1,
651 connection_acquisition_wait: 250,
652 connection_acquisition_retries: 5,
653 max_connections: 250,
654 max_idle_time: 30_000,
655 retry: 0,
656 await_up_timeout: 5_000
657
658 config :pleroma, :pools,
659 federation: [
660 size: 50,
661 max_waiting: 10
662 ],
663 media: [
664 size: 50,
665 max_waiting: 10
666 ],
667 upload: [
668 size: 25,
669 max_waiting: 5
670 ],
671 default: [
672 size: 10,
673 max_waiting: 2
674 ]
675
676 config :pleroma, :hackney_pools,
677 federation: [
678 max_connections: 50,
679 timeout: 150_000
680 ],
681 media: [
682 max_connections: 50,
683 timeout: 150_000
684 ],
685 upload: [
686 max_connections: 25,
687 timeout: 300_000
688 ]
689
690 config :pleroma, :restrict_unauthenticated,
691 timelines: %{local: false, federated: false},
692 profiles: %{local: false, remote: false},
693 activities: %{local: false, remote: false}
694
695 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
696
697 config :pleroma, :mrf,
698 policies: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
699 transparency: true,
700 transparency_exclusions: []
701
702 config :tzdata, :http_client, Pleroma.HTTP.Tzdata
703
704 config :ex_aws, http_client: Pleroma.HTTP.ExAws
705
706 config :pleroma, :instances_favicons, enabled: false
707
708 # Import environment specific config. This must remain at the bottom
709 # of this file so it overrides the configuration defined above.
710 import_config "#{Mix.env()}.exs"