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 telemetry_event: [Pleroma.Repo.Instrumenter],
51 migration_lock: nil
52
53 config :pleroma, Pleroma.Captcha,
54 enabled: true,
55 seconds_valid: 300,
56 method: Pleroma.Captcha.Native
57
58 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
59
60 # Upload configuration
61 config :pleroma, Pleroma.Upload,
62 uploader: Pleroma.Uploaders.Local,
63 filters: [Pleroma.Upload.Filter.Dedupe],
64 link_name: false,
65 proxy_remote: false,
66 filename_display_max_length: 30,
67 default_description: nil,
68 base_url: nil
69
70 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
71
72 config :pleroma, Pleroma.Uploaders.S3,
73 bucket: nil,
74 bucket_namespace: nil,
75 truncated_namespace: nil,
76 streaming_enabled: true
77
78 config :ex_aws, :s3,
79 # host: "s3.wasabisys.com", # required if not Amazon AWS
80 access_key_id: nil,
81 secret_access_key: nil,
82 # region: "us-east-1", # may be required for Amazon AWS
83 scheme: "https://"
84
85 config :pleroma, :emoji,
86 shortcode_globs: ["/emoji/custom/**/*.png"],
87 pack_extensions: [".png", ".gif"],
88 groups: [
89 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
90 ],
91 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
92 shared_pack_cache_seconds_per_file: 60
93
94 config :pleroma, :uri_schemes,
95 valid_schemes: [
96 "https",
97 "http",
98 "dat",
99 "dweb",
100 "gopher",
101 "hyper",
102 "ipfs",
103 "ipns",
104 "irc",
105 "ircs",
106 "magnet",
107 "mailto",
108 "mumble",
109 "ssb",
110 "xmpp"
111 ]
112
113 websocket_config = [
114 path: "/websocket",
115 serializer: [
116 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
117 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
118 ],
119 timeout: 60_000,
120 transport_log: false,
121 compress: false
122 ]
123
124 # Configures the endpoint
125 config :pleroma, Pleroma.Web.Endpoint,
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_server: Pleroma.PubSub,
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.Hackney
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 static_dir: "instance/static/",
219 allowed_post_formats: [
220 "text/plain",
221 "text/html",
222 "text/markdown",
223 "text/bbcode"
224 ],
225 mrf_transparency: true,
226 mrf_transparency_exclusions: [],
227 staff_transparency: [],
228 autofollowed_nicknames: [],
229 autofollowing_nicknames: [],
230 max_pinned_statuses: 1,
231 attachment_links: false,
232 max_report_comment_size: 1000,
233 safe_dm_mentions: false,
234 healthcheck: false,
235 remote_post_retention_days: 90,
236 skip_thread_containment: true,
237 limit_to_local_content: :unauthenticated,
238 user_bio_length: 5000,
239 user_name_length: 100,
240 max_account_fields: 10,
241 max_remote_account_fields: 20,
242 account_field_name_length: 512,
243 account_field_value_length: 2048,
244 registration_reason_length: 500,
245 external_user_synchronization: true,
246 extended_nickname_format: true,
247 cleanup_attachments: false,
248 multi_factor_authentication: [
249 totp: [
250 # digits 6 or 8
251 digits: 6,
252 period: 30
253 ],
254 backup_codes: [
255 number: 5,
256 length: 16
257 ]
258 ],
259 show_reactions: true,
260 password_reset_token_validity: 60 * 60 * 24
261
262 config :pleroma, :welcome,
263 direct_message: [
264 enabled: false,
265 sender_nickname: nil,
266 message: nil
267 ],
268 chat_message: [
269 enabled: false,
270 sender_nickname: nil,
271 message: nil
272 ],
273 email: [
274 enabled: false,
275 sender: nil,
276 subject: "Welcome to <%= instance_name %>",
277 html: "Welcome to <%= instance_name %>",
278 text: "Welcome to <%= instance_name %>"
279 ]
280
281 config :pleroma, :feed,
282 post_title: %{
283 max_length: 100,
284 omission: "..."
285 }
286
287 config :pleroma, :markup,
288 # XXX - unfortunately, inline images must be enabled by default right now, because
289 # of custom emoji. Issue #275 discusses defanging that somehow.
290 allow_inline_images: true,
291 allow_headings: false,
292 allow_tables: false,
293 allow_fonts: false,
294 scrub_policy: [
295 Pleroma.HTML.Scrubber.Default,
296 Pleroma.HTML.Transform.MediaProxy
297 ]
298
299 config :pleroma, :frontend_configurations,
300 pleroma_fe: %{
301 alwaysShowSubjectInput: true,
302 background: "/images/city.jpg",
303 collapseMessageWithSubject: false,
304 disableChat: false,
305 greentext: false,
306 hideFilteredStatuses: false,
307 hideMutedPosts: false,
308 hidePostStats: false,
309 hideSitename: false,
310 hideUserStats: false,
311 loginMethod: "password",
312 logo: "/static/logo.svg",
313 logoMargin: ".1em",
314 logoMask: true,
315 minimalScopesMode: false,
316 noAttachmentLinks: false,
317 nsfwCensorImage: "",
318 postContentType: "text/plain",
319 redirectRootLogin: "/main/friends",
320 redirectRootNoLogin: "/main/all",
321 scopeCopy: true,
322 sidebarRight: false,
323 showFeaturesPanel: true,
324 showInstanceSpecificPanel: false,
325 subjectLineBehavior: "email",
326 theme: "pleroma-dark",
327 webPushNotifications: false
328 },
329 masto_fe: %{
330 showInstanceSpecificPanel: true
331 }
332
333 config :pleroma, :assets,
334 mascots: [
335 pleroma_fox_tan: %{
336 url: "/images/pleroma-fox-tan-smol.png",
337 mime_type: "image/png"
338 },
339 pleroma_fox_tan_shy: %{
340 url: "/images/pleroma-fox-tan-shy.png",
341 mime_type: "image/png"
342 }
343 ],
344 default_mascot: :pleroma_fox_tan
345
346 config :pleroma, :manifest,
347 icons: [
348 %{
349 src: "/static/logo.svg",
350 type: "image/svg+xml"
351 }
352 ],
353 theme_color: "#282c37",
354 background_color: "#191b22"
355
356 config :pleroma, :activitypub,
357 unfollow_blocked: true,
358 outgoing_blocks: true,
359 follow_handshake_timeout: 500,
360 note_replies_output_limit: 5,
361 sign_object_fetches: true,
362 authorized_fetch_mode: false
363
364 config :pleroma, :streamer,
365 workers: 3,
366 overflow_workers: 2
367
368 config :pleroma, :user, deny_follow_blocked: true
369
370 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
371
372 config :pleroma, :mrf_rejectnonpublic,
373 allow_followersonly: false,
374 allow_direct: false
375
376 config :pleroma, :mrf_hellthread,
377 delist_threshold: 10,
378 reject_threshold: 20
379
380 config :pleroma, :mrf_simple,
381 media_removal: [],
382 media_nsfw: [],
383 federated_timeline_removal: [],
384 report_removal: [],
385 reject: [],
386 followers_only: [],
387 accept: [],
388 avatar_removal: [],
389 banner_removal: [],
390 reject_deletes: []
391
392 config :pleroma, :mrf_keyword,
393 reject: [],
394 federated_timeline_removal: [],
395 replace: []
396
397 config :pleroma, :mrf_subchain, match_actor: %{}
398
399 config :pleroma, :mrf_activity_expiration, days: 365
400
401 config :pleroma, :mrf_vocabulary,
402 accept: [],
403 reject: []
404
405 # threshold of 7 days
406 config :pleroma, :mrf_object_age,
407 threshold: 604_800,
408 actions: [:delist, :strip_followers]
409
410 config :pleroma, :rich_media,
411 enabled: true,
412 ignore_hosts: [],
413 ignore_tld: ["local", "localdomain", "lan"],
414 parsers: [
415 Pleroma.Web.RichMedia.Parsers.TwitterCard,
416 Pleroma.Web.RichMedia.Parsers.OEmbed
417 ],
418 failure_backoff: 60_000,
419 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
420
421 config :pleroma, :media_proxy,
422 enabled: false,
423 invalidation: [
424 enabled: false,
425 provider: Pleroma.Web.MediaProxy.Invalidation.Script
426 ],
427 proxy_opts: [
428 redirect_on_failure: false,
429 max_body_length: 25 * 1_048_576,
430 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
431 max_read_duration: 30_000,
432 http: [
433 follow_redirect: true,
434 pool: :media
435 ]
436 ],
437 whitelist: []
438
439 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
440 method: :purge,
441 headers: [],
442 options: []
443
444 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script,
445 script_path: nil,
446 url_format: nil
447
448 # Note: media preview proxy depends on media proxy to be enabled
449 config :pleroma, :media_preview_proxy,
450 enabled: false,
451 thumbnail_max_width: 600,
452 thumbnail_max_height: 600,
453 image_quality: 85,
454 min_content_length: 100 * 1024
455
456 config :pleroma, :chat, enabled: true
457
458 config :phoenix, :format_encoders, json: Jason
459
460 config :phoenix, :json_library, Jason
461
462 config :phoenix, :filter_parameters, ["password", "confirm"]
463
464 config :pleroma, :gopher,
465 enabled: false,
466 ip: {0, 0, 0, 0},
467 port: 9999
468
469 config :pleroma, Pleroma.Web.Metadata,
470 providers: [
471 Pleroma.Web.Metadata.Providers.OpenGraph,
472 Pleroma.Web.Metadata.Providers.TwitterCard
473 ],
474 unfurl_nsfw: false
475
476 config :pleroma, Pleroma.Web.Preload,
477 providers: [
478 Pleroma.Web.Preload.Providers.Instance
479 ]
480
481 config :pleroma, :http_security,
482 enabled: true,
483 sts: false,
484 sts_max_age: 31_536_000,
485 ct_max_age: 2_592_000,
486 referrer_policy: "same-origin"
487
488 config :cors_plug,
489 max_age: 86_400,
490 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
491 expose: [
492 "Link",
493 "X-RateLimit-Reset",
494 "X-RateLimit-Limit",
495 "X-RateLimit-Remaining",
496 "X-Request-Id",
497 "Idempotency-Key"
498 ],
499 credentials: true,
500 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
501
502 config :pleroma, Pleroma.User,
503 restricted_nicknames: [
504 ".well-known",
505 "~",
506 "about",
507 "activities",
508 "api",
509 "auth",
510 "check_password",
511 "dev",
512 "friend-requests",
513 "inbox",
514 "internal",
515 "main",
516 "media",
517 "nodeinfo",
518 "notice",
519 "oauth",
520 "objects",
521 "ostatus_subscribe",
522 "pleroma",
523 "proxy",
524 "push",
525 "registration",
526 "relay",
527 "settings",
528 "status",
529 "tag",
530 "user-search",
531 "user_exists",
532 "users",
533 "web",
534 "verify_credentials",
535 "update_credentials",
536 "relationships",
537 "search",
538 "confirmation_resend",
539 "mfa"
540 ],
541 email_blacklist: []
542
543 config :pleroma, Oban,
544 repo: Pleroma.Repo,
545 log: false,
546 queues: [
547 activity_expiration: 10,
548 token_expiration: 5,
549 filter_expiration: 1,
550 backup: 1,
551 federator_incoming: 50,
552 federator_outgoing: 50,
553 ingestion_queue: 50,
554 web_push: 50,
555 mailer: 10,
556 transmogrifier: 20,
557 scheduled_activities: 10,
558 background: 5,
559 remote_fetcher: 2,
560 attachments_cleanup: 1,
561 new_users_digest: 1,
562 mute_expire: 5
563 ],
564 plugins: [Oban.Plugins.Pruner],
565 crontab: [
566 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
567 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
568 ]
569
570 config :pleroma, :workers,
571 retries: [
572 federator_incoming: 5,
573 federator_outgoing: 5
574 ]
575
576 config :pleroma, Pleroma.Formatter,
577 class: false,
578 rel: "ugc",
579 new_window: false,
580 truncate: false,
581 strip_prefix: false,
582 extra: true,
583 validate_tld: :no_scheme
584
585 config :pleroma, :ldap,
586 enabled: System.get_env("LDAP_ENABLED") == "true",
587 host: System.get_env("LDAP_HOST") || "localhost",
588 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
589 ssl: System.get_env("LDAP_SSL") == "true",
590 sslopts: [],
591 tls: System.get_env("LDAP_TLS") == "true",
592 tlsopts: [],
593 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
594 uid: System.get_env("LDAP_UID") || "cn"
595
596 config :esshd,
597 enabled: false
598
599 oauth_consumer_strategies =
600 System.get_env("OAUTH_CONSUMER_STRATEGIES")
601 |> to_string()
602 |> String.split()
603 |> Enum.map(&hd(String.split(&1, ":")))
604
605 ueberauth_providers =
606 for strategy <- oauth_consumer_strategies do
607 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
608 strategy_module = String.to_atom(strategy_module_name)
609 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
610 end
611
612 config :ueberauth,
613 Ueberauth,
614 base_path: "/oauth",
615 providers: ueberauth_providers
616
617 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
618
619 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
620
621 config :pleroma, Pleroma.Emails.UserEmail,
622 logo: nil,
623 styling: %{
624 link_color: "#d8a070",
625 background_color: "#2C3645",
626 content_background_color: "#1B2635",
627 header_color: "#d8a070",
628 text_color: "#b9b9ba",
629 text_muted_color: "#b9b9ba"
630 }
631
632 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
633
634 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter,
635 enabled: false,
636 auth: false,
637 ip_whitelist: [],
638 path: "/api/pleroma/app_metrics",
639 format: :text
640
641 config :pleroma, Pleroma.ScheduledActivity,
642 daily_user_limit: 25,
643 total_user_limit: 300,
644 enabled: true
645
646 config :pleroma, :email_notifications,
647 digest: %{
648 active: false,
649 interval: 7,
650 inactivity_threshold: 7
651 }
652
653 config :pleroma, :oauth2,
654 token_expires_in: 3600 * 24 * 365 * 100,
655 issue_new_refresh_token: true,
656 clean_expired_tokens: false
657
658 config :pleroma, :database, rum_enabled: false
659
660 config :pleroma, :env, Mix.env()
661
662 config :http_signatures,
663 adapter: Pleroma.Signature
664
665 config :pleroma, :rate_limit,
666 authentication: {60_000, 15},
667 timeline: {500, 3},
668 search: [{1000, 10}, {1000, 30}],
669 app_account_creation: {1_800_000, 25},
670 relations_actions: {10_000, 10},
671 relation_id_action: {60_000, 2},
672 statuses_actions: {10_000, 15},
673 status_id_action: {60_000, 3},
674 password_reset: {1_800_000, 5},
675 account_confirmation_resend: {8_640_000, 5},
676 ap_routes: {60_000, 15}
677
678 config :pleroma, Pleroma.Workers.PurgeExpiredActivity, enabled: true, min_lifetime: 600
679
680 config :pleroma, Pleroma.Web.Plugs.RemoteIp,
681 enabled: true,
682 headers: ["x-forwarded-for"],
683 proxies: [],
684 reserved: [
685 "127.0.0.0/8",
686 "::1/128",
687 "fc00::/7",
688 "10.0.0.0/8",
689 "172.16.0.0/12",
690 "192.168.0.0/16"
691 ]
692
693 config :pleroma, :static_fe, enabled: false
694
695 # Example of frontend configuration
696 # This example will make us serve the primary frontend from the
697 # frontends directory within your `:pleroma, :instance, static_dir`.
698 # e.g., instance/static/frontends/pleroma/develop/
699 #
700 # With no frontend configuration, the bundled files from the `static` directory will
701 # be used.
702 #
703 # config :pleroma, :frontends,
704 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
705 # admin: %{"name" => "admin-fe", "ref" => "stable"},
706 # available: %{...}
707
708 config :pleroma, :frontends,
709 available: %{
710 "kenoma" => %{
711 "name" => "kenoma",
712 "git" => "https://git.pleroma.social/lambadalambda/kenoma",
713 "build_url" =>
714 "https://git.pleroma.social/lambadalambda/kenoma/-/jobs/artifacts/${ref}/download?job=build",
715 "ref" => "master"
716 },
717 "pleroma-fe" => %{
718 "name" => "pleroma-fe",
719 "git" => "https://git.pleroma.social/pleroma/pleroma-fe",
720 "build_url" =>
721 "https://git.pleroma.social/pleroma/pleroma-fe/-/jobs/artifacts/${ref}/download?job=build",
722 "ref" => "develop"
723 },
724 "fedi-fe" => %{
725 "name" => "fedi-fe",
726 "git" => "https://git.pleroma.social/pleroma/fedi-fe",
727 "build_url" =>
728 "https://git.pleroma.social/pleroma/fedi-fe/-/jobs/artifacts/${ref}/download?job=build",
729 "ref" => "master",
730 "custom-http-headers" => [
731 {"service-worker-allowed", "/"}
732 ]
733 },
734 "admin-fe" => %{
735 "name" => "admin-fe",
736 "git" => "https://git.pleroma.social/pleroma/admin-fe",
737 "build_url" =>
738 "https://git.pleroma.social/pleroma/admin-fe/-/jobs/artifacts/${ref}/download?job=build",
739 "ref" => "develop"
740 },
741 "soapbox-fe" => %{
742 "name" => "soapbox-fe",
743 "git" => "https://gitlab.com/soapbox-pub/soapbox-fe",
744 "build_url" =>
745 "https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/${ref}/download?job=build-production",
746 "ref" => "v1.0.0",
747 "build_dir" => "static"
748 }
749 }
750
751 config :pleroma, :web_cache_ttl,
752 activity_pub: nil,
753 activity_pub_question: 30_000
754
755 config :pleroma, :modules, runtime_dir: "instance/modules"
756
757 config :pleroma, configurable_from_database: false
758
759 config :pleroma, Pleroma.Repo,
760 parameters: [gin_fuzzy_search_limit: "500"],
761 prepare: :unnamed
762
763 config :pleroma, :connections_pool,
764 reclaim_multiplier: 0.1,
765 connection_acquisition_wait: 250,
766 connection_acquisition_retries: 5,
767 max_connections: 250,
768 max_idle_time: 30_000,
769 retry: 0,
770 connect_timeout: 5_000
771
772 config :pleroma, :pools,
773 federation: [
774 size: 50,
775 max_waiting: 10,
776 recv_timeout: 10_000
777 ],
778 media: [
779 size: 50,
780 max_waiting: 20,
781 recv_timeout: 15_000
782 ],
783 upload: [
784 size: 25,
785 max_waiting: 5,
786 recv_timeout: 15_000
787 ],
788 default: [
789 size: 10,
790 max_waiting: 2,
791 recv_timeout: 5_000
792 ]
793
794 config :pleroma, :hackney_pools,
795 federation: [
796 max_connections: 50,
797 timeout: 150_000
798 ],
799 media: [
800 max_connections: 50,
801 timeout: 150_000
802 ],
803 upload: [
804 max_connections: 25,
805 timeout: 300_000
806 ]
807
808 config :pleroma, :majic_pool, size: 2
809
810 private_instance? = :if_instance_is_private
811
812 config :pleroma, :restrict_unauthenticated,
813 timelines: %{local: private_instance?, federated: private_instance?},
814 profiles: %{local: private_instance?, remote: private_instance?},
815 activities: %{local: private_instance?, remote: private_instance?}
816
817 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
818
819 config :pleroma, :mrf,
820 policies: [Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy, Pleroma.Web.ActivityPub.MRF.TagPolicy],
821 transparency: true,
822 transparency_exclusions: []
823
824 config :tzdata, :http_client, Pleroma.HTTP.Tzdata
825
826 config :ex_aws, http_client: Pleroma.HTTP.ExAws
827
828 config :web_push_encryption, http_client: Pleroma.HTTP.WebPush
829
830 config :pleroma, :instances_favicons, enabled: false
831
832 config :floki, :html_parser, Floki.HTMLParser.FastHtml
833
834 config :pleroma, Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator
835
836 config :pleroma, Pleroma.User.Backup,
837 purge_after_days: 30,
838 limit_days: 7,
839 dir: nil
840
841 config :pleroma, ConcurrentLimiter, [
842 {Pleroma.Web.RichMedia.Helpers, [max_running: 5, max_waiting: 5]},
843 {Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy, [max_running: 5, max_waiting: 5]}
844 ]
845
846 # Import environment specific config. This must remain at the bottom
847 # of this file so it overrides the configuration defined above.
848 import_config "#{Mix.env()}.exs"