Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma into develop
[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 "ipfs",
101 "ipns",
102 "irc",
103 "ircs",
104 "magnet",
105 "mailto",
106 "mumble",
107 "ssb",
108 "xmpp"
109 ]
110
111 websocket_config = [
112 path: "/websocket",
113 serializer: [
114 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
115 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
116 ],
117 timeout: 60_000,
118 transport_log: false,
119 compress: false
120 ]
121
122 # Configures the endpoint
123 config :pleroma, Pleroma.Web.Endpoint,
124 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
125 url: [host: "localhost"],
126 http: [
127 ip: {127, 0, 0, 1},
128 dispatch: [
129 {:_,
130 [
131 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
132 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
133 {Phoenix.Transports.WebSocket,
134 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
135 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
136 ]}
137 ]
138 ],
139 protocol: "https",
140 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
141 signing_salt: "CqaoopA2",
142 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
143 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
144 secure_cookie_flag: true,
145 extra_cookie_attrs: [
146 "SameSite=Lax"
147 ]
148
149 # Configures Elixir's Logger
150 config :logger, :console,
151 level: :debug,
152 format: "\n$time $metadata[$level] $message\n",
153 metadata: [:request_id]
154
155 config :logger, :ex_syslogger,
156 level: :debug,
157 ident: "pleroma",
158 format: "$metadata[$level] $message",
159 metadata: [:request_id]
160
161 config :quack,
162 level: :warn,
163 meta: [:all],
164 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
165
166 config :mime, :types, %{
167 "application/xml" => ["xml"],
168 "application/xrd+xml" => ["xrd+xml"],
169 "application/jrd+json" => ["jrd+json"],
170 "application/activity+json" => ["activity+json"],
171 "application/ld+json" => ["activity+json"]
172 }
173
174 config :tesla, adapter: Tesla.Adapter.Hackney
175
176 # Configures http settings, upstream proxy etc.
177 config :pleroma, :http,
178 proxy_url: nil,
179 send_user_agent: true,
180 user_agent: :default,
181 adapter: []
182
183 config :pleroma, :instance,
184 name: "Pleroma",
185 email: "example@example.com",
186 notify_email: "noreply@example.com",
187 description: "Pleroma: An efficient and flexible fediverse server",
188 background_image: "/images/city.jpg",
189 limit: 5_000,
190 chat_limit: 5_000,
191 remote_limit: 100_000,
192 upload_limit: 16_000_000,
193 avatar_upload_limit: 2_000_000,
194 background_upload_limit: 4_000_000,
195 banner_upload_limit: 4_000_000,
196 poll_limits: %{
197 max_options: 20,
198 max_option_chars: 200,
199 min_expiration: 0,
200 max_expiration: 365 * 24 * 60 * 60
201 },
202 registrations_open: true,
203 invites_enabled: false,
204 account_activation_required: false,
205 federating: true,
206 federation_incoming_replies_max_depth: 100,
207 federation_reachability_timeout_days: 7,
208 federation_publisher_modules: [
209 Pleroma.Web.ActivityPub.Publisher
210 ],
211 allow_relay: true,
212 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
213 public: true,
214 quarantined_instances: [],
215 managed_config: true,
216 static_dir: "instance/static/",
217 allowed_post_formats: [
218 "text/plain",
219 "text/html",
220 "text/markdown",
221 "text/bbcode"
222 ],
223 mrf_transparency: true,
224 mrf_transparency_exclusions: [],
225 staff_transparency: [],
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, :chat, enabled: true
412
413 config :phoenix, :format_encoders, json: Jason
414
415 config :phoenix, :json_library, Jason
416
417 config :phoenix, :filter_parameters, ["password", "confirm"]
418
419 config :pleroma, :gopher,
420 enabled: false,
421 ip: {0, 0, 0, 0},
422 port: 9999
423
424 config :pleroma, Pleroma.Web.Metadata,
425 providers: [
426 Pleroma.Web.Metadata.Providers.OpenGraph,
427 Pleroma.Web.Metadata.Providers.TwitterCard,
428 Pleroma.Web.Metadata.Providers.RelMe,
429 Pleroma.Web.Metadata.Providers.Feed
430 ],
431 unfurl_nsfw: false
432
433 config :pleroma, :http_security,
434 enabled: true,
435 sts: false,
436 sts_max_age: 31_536_000,
437 ct_max_age: 2_592_000,
438 referrer_policy: "same-origin"
439
440 config :cors_plug,
441 max_age: 86_400,
442 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
443 expose: [
444 "Link",
445 "X-RateLimit-Reset",
446 "X-RateLimit-Limit",
447 "X-RateLimit-Remaining",
448 "X-Request-Id",
449 "Idempotency-Key"
450 ],
451 credentials: true,
452 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
453
454 config :pleroma, Pleroma.User,
455 restricted_nicknames: [
456 ".well-known",
457 "~",
458 "about",
459 "activities",
460 "api",
461 "auth",
462 "check_password",
463 "dev",
464 "friend-requests",
465 "inbox",
466 "internal",
467 "main",
468 "media",
469 "nodeinfo",
470 "notice",
471 "oauth",
472 "objects",
473 "ostatus_subscribe",
474 "pleroma",
475 "proxy",
476 "push",
477 "registration",
478 "relay",
479 "settings",
480 "status",
481 "tag",
482 "user-search",
483 "user_exists",
484 "users",
485 "web"
486 ]
487
488 config :pleroma, Oban,
489 repo: Pleroma.Repo,
490 verbose: false,
491 prune: {:maxlen, 1500},
492 queues: [
493 activity_expiration: 10,
494 federator_incoming: 50,
495 federator_outgoing: 50,
496 web_push: 50,
497 mailer: 10,
498 transmogrifier: 20,
499 scheduled_activities: 10,
500 background: 5,
501 remote_fetcher: 2,
502 attachments_cleanup: 5,
503 new_users_digest: 1
504 ],
505 crontab: [
506 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
507 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
508 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
509 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
510 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
511 ]
512
513 config :pleroma, :workers,
514 retries: [
515 federator_incoming: 5,
516 federator_outgoing: 5
517 ]
518
519 config :auto_linker,
520 opts: [
521 extra: true,
522 # TODO: Set to :no_scheme when it works properly
523 validate_tld: true,
524 class: false,
525 strip_prefix: false,
526 new_window: false,
527 rel: "ugc"
528 ]
529
530 config :pleroma, :ldap,
531 enabled: System.get_env("LDAP_ENABLED") == "true",
532 host: System.get_env("LDAP_HOST") || "localhost",
533 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
534 ssl: System.get_env("LDAP_SSL") == "true",
535 sslopts: [],
536 tls: System.get_env("LDAP_TLS") == "true",
537 tlsopts: [],
538 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
539 uid: System.get_env("LDAP_UID") || "cn"
540
541 config :esshd,
542 enabled: false
543
544 oauth_consumer_strategies =
545 System.get_env("OAUTH_CONSUMER_STRATEGIES")
546 |> to_string()
547 |> String.split()
548 |> Enum.map(&hd(String.split(&1, ":")))
549
550 ueberauth_providers =
551 for strategy <- oauth_consumer_strategies do
552 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
553 strategy_module = String.to_atom(strategy_module_name)
554 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
555 end
556
557 config :ueberauth,
558 Ueberauth,
559 base_path: "/oauth",
560 providers: ueberauth_providers
561
562 config :pleroma,
563 :auth,
564 enforce_oauth_admin_scope_usage: true,
565 oauth_consumer_strategies: oauth_consumer_strategies
566
567 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
568
569 config :pleroma, Pleroma.Emails.UserEmail,
570 logo: nil,
571 styling: %{
572 link_color: "#d8a070",
573 background_color: "#2C3645",
574 content_background_color: "#1B2635",
575 header_color: "#d8a070",
576 text_color: "#b9b9ba",
577 text_muted_color: "#b9b9ba"
578 }
579
580 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
581
582 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
583
584 config :pleroma, Pleroma.ScheduledActivity,
585 daily_user_limit: 25,
586 total_user_limit: 300,
587 enabled: true
588
589 config :pleroma, :email_notifications,
590 digest: %{
591 active: false,
592 interval: 7,
593 inactivity_threshold: 7
594 }
595
596 config :pleroma, :oauth2,
597 token_expires_in: 600,
598 issue_new_refresh_token: true,
599 clean_expired_tokens: false
600
601 config :pleroma, :database, rum_enabled: false
602
603 config :pleroma, :env, Mix.env()
604
605 config :http_signatures,
606 adapter: Pleroma.Signature
607
608 config :pleroma, :rate_limit,
609 authentication: {60_000, 15},
610 timeline: {500, 3},
611 search: [{1000, 10}, {1000, 30}],
612 app_account_creation: {1_800_000, 25},
613 relations_actions: {10_000, 10},
614 relation_id_action: {60_000, 2},
615 statuses_actions: {10_000, 15},
616 status_id_action: {60_000, 3},
617 password_reset: {1_800_000, 5},
618 account_confirmation_resend: {8_640_000, 5},
619 ap_routes: {60_000, 15}
620
621 config :pleroma, Pleroma.ActivityExpiration, enabled: true
622
623 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
624
625 config :pleroma, :static_fe, enabled: false
626
627 config :pleroma, :web_cache_ttl,
628 activity_pub: nil,
629 activity_pub_question: 30_000
630
631 config :pleroma, :modules, runtime_dir: "instance/modules"
632
633 config :pleroma, configurable_from_database: false
634
635 config :pleroma, Pleroma.Repo,
636 parameters: [gin_fuzzy_search_limit: "500"],
637 prepare: :unnamed
638
639 config :pleroma, :connections_pool,
640 checkin_timeout: 250,
641 max_connections: 250,
642 retry: 1,
643 retry_timeout: 1000,
644 await_up_timeout: 5_000
645
646 config :pleroma, :pools,
647 federation: [
648 size: 50,
649 max_overflow: 10,
650 timeout: 150_000
651 ],
652 media: [
653 size: 50,
654 max_overflow: 10,
655 timeout: 150_000
656 ],
657 upload: [
658 size: 25,
659 max_overflow: 5,
660 timeout: 300_000
661 ],
662 default: [
663 size: 10,
664 max_overflow: 2,
665 timeout: 10_000
666 ]
667
668 config :pleroma, :hackney_pools,
669 federation: [
670 max_connections: 50,
671 timeout: 150_000
672 ],
673 media: [
674 max_connections: 50,
675 timeout: 150_000
676 ],
677 upload: [
678 max_connections: 25,
679 timeout: 300_000
680 ]
681
682 config :pleroma, :restrict_unauthenticated,
683 timelines: %{local: false, federated: false},
684 profiles: %{local: false, remote: false},
685 activities: %{local: false, remote: false}
686
687 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
688
689 # Import environment specific config. This must remain at the bottom
690 # of this file so it overrides the configuration defined above.
691 import_config "#{Mix.env()}.exs"