Revert "Merge branch 'remove/mastofe' 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 import 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 live_view: [signing_salt: "U5ELgdEwTD3n1+D5s0rY0AMg8/y1STxZ3Zvsl3bWh+oBcGrYdil0rXqPMRd3Glcq"],
143 signing_salt: "CqaoopA2",
144 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
145 pubsub_server: Pleroma.PubSub,
146 secure_cookie_flag: true,
147 extra_cookie_attrs: [
148 "SameSite=Lax"
149 ]
150
151 # Configures Elixir's Logger
152 config :logger, truncate: 65536
153
154 config :logger, :console,
155 level: :debug,
156 format: "\n$time $metadata[$level] $message\n",
157 metadata: [:request_id]
158
159 config :logger, :ex_syslogger,
160 level: :debug,
161 ident: "pleroma",
162 format: "$metadata[$level] $message",
163 metadata: [:request_id]
164
165 config :quack,
166 level: :warn,
167 meta: [:all],
168 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
169
170 config :mime, :types, %{
171 "application/xml" => ["xml"],
172 "application/xrd+xml" => ["xrd+xml"],
173 "application/jrd+json" => ["jrd+json"],
174 "application/activity+json" => ["activity+json"],
175 "application/ld+json" => ["activity+json"]
176 }
177
178 config :tesla, adapter: Tesla.Adapter.Hackney
179
180 # Configures http settings, upstream proxy etc.
181 config :pleroma, :http,
182 proxy_url: nil,
183 send_user_agent: true,
184 user_agent: :default,
185 adapter: []
186
187 config :pleroma, :instance,
188 name: "Pleroma",
189 email: "example@example.com",
190 notify_email: "noreply@example.com",
191 description: "Pleroma: An efficient and flexible fediverse server",
192 background_image: "/images/city.jpg",
193 instance_thumbnail: "/instance/thumbnail.jpeg",
194 limit: 5_000,
195 description_limit: 5_000,
196 remote_limit: 100_000,
197 upload_limit: 16_000_000,
198 avatar_upload_limit: 2_000_000,
199 background_upload_limit: 4_000_000,
200 banner_upload_limit: 4_000_000,
201 poll_limits: %{
202 max_options: 20,
203 max_option_chars: 200,
204 min_expiration: 0,
205 max_expiration: 365 * 24 * 60 * 60
206 },
207 registrations_open: true,
208 invites_enabled: false,
209 account_activation_required: false,
210 account_approval_required: false,
211 federating: true,
212 federation_incoming_replies_max_depth: 100,
213 federation_reachability_timeout_days: 7,
214 federation_publisher_modules: [
215 Pleroma.Web.ActivityPub.Publisher
216 ],
217 allow_relay: true,
218 public: true,
219 quarantined_instances: [],
220 static_dir: "instance/static/",
221 allowed_post_formats: [
222 "text/plain",
223 "text/html",
224 "text/markdown",
225 "text/bbcode"
226 ],
227 autofollowed_nicknames: [],
228 autofollowing_nicknames: [],
229 max_pinned_statuses: 1,
230 attachment_links: false,
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 registration_reason_length: 500,
244 external_user_synchronization: true,
245 extended_nickname_format: true,
246 cleanup_attachments: false,
247 multi_factor_authentication: [
248 totp: [
249 # digits 6 or 8
250 digits: 6,
251 period: 30
252 ],
253 backup_codes: [
254 number: 5,
255 length: 16
256 ]
257 ],
258 show_reactions: true,
259 password_reset_token_validity: 60 * 60 * 24,
260 profile_directory: true,
261 privileged_staff: false
262
263 config :pleroma, :welcome,
264 direct_message: [
265 enabled: false,
266 sender_nickname: nil,
267 message: nil
268 ],
269 chat_message: [
270 enabled: false,
271 sender_nickname: nil,
272 message: nil
273 ],
274 email: [
275 enabled: false,
276 sender: nil,
277 subject: "Welcome to <%= instance_name %>",
278 html: "Welcome to <%= instance_name %>",
279 text: "Welcome to <%= instance_name %>"
280 ]
281
282 config :pleroma, :feed,
283 post_title: %{
284 max_length: 100,
285 omission: "..."
286 }
287
288 config :pleroma, :markup,
289 # XXX - unfortunately, inline images must be enabled by default right now, because
290 # of custom emoji. Issue #275 discusses defanging that somehow.
291 allow_inline_images: true,
292 allow_headings: false,
293 allow_tables: false,
294 allow_fonts: false,
295 scrub_policy: [
296 Pleroma.HTML.Scrubber.Default,
297 Pleroma.HTML.Transform.MediaProxy
298 ]
299
300 config :pleroma, :frontend_configurations,
301 pleroma_fe: %{
302 alwaysShowSubjectInput: true,
303 background: "/images/city.jpg",
304 collapseMessageWithSubject: false,
305 disableChat: false,
306 greentext: false,
307 hideFilteredStatuses: false,
308 hideMutedPosts: false,
309 hidePostStats: false,
310 hideSitename: false,
311 hideUserStats: false,
312 loginMethod: "password",
313 logo: "/static/logo.svg",
314 logoMargin: ".1em",
315 logoMask: true,
316 minimalScopesMode: false,
317 noAttachmentLinks: false,
318 nsfwCensorImage: "",
319 postContentType: "text/plain",
320 redirectRootLogin: "/main/friends",
321 redirectRootNoLogin: "/main/all",
322 scopeCopy: true,
323 sidebarRight: false,
324 showFeaturesPanel: true,
325 showInstanceSpecificPanel: false,
326 subjectLineBehavior: "email",
327 theme: "pleroma-dark",
328 webPushNotifications: false
329 },
330 masto_fe: %{
331 showInstanceSpecificPanel: true
332 }
333
334 config :pleroma, :assets,
335 mascots: [
336 pleroma_fox_tan: %{
337 url: "/images/pleroma-fox-tan-smol.png",
338 mime_type: "image/png"
339 },
340 pleroma_fox_tan_shy: %{
341 url: "/images/pleroma-fox-tan-shy.png",
342 mime_type: "image/png"
343 }
344 ],
345 default_mascot: :pleroma_fox_tan
346
347 config :pleroma, :manifest,
348 icons: [
349 %{
350 src: "/static/logo.svg",
351 type: "image/svg+xml"
352 }
353 ],
354 theme_color: "#282c37",
355 background_color: "#191b22"
356
357 config :pleroma, :activitypub,
358 unfollow_blocked: true,
359 outgoing_blocks: true,
360 blockers_visible: true,
361 follow_handshake_timeout: 500,
362 note_replies_output_limit: 5,
363 sign_object_fetches: true,
364 authorized_fetch_mode: false
365
366 config :pleroma, :streamer,
367 workers: 3,
368 overflow_workers: 2
369
370 config :pleroma, :user, deny_follow_blocked: true
371
372 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
373
374 config :pleroma, :mrf_rejectnonpublic,
375 allow_followersonly: false,
376 allow_direct: false
377
378 config :pleroma, :mrf_hellthread,
379 delist_threshold: 10,
380 reject_threshold: 20
381
382 config :pleroma, :mrf_simple,
383 media_removal: [],
384 media_nsfw: [],
385 federated_timeline_removal: [],
386 report_removal: [],
387 reject: [],
388 followers_only: [],
389 accept: [],
390 avatar_removal: [],
391 banner_removal: [],
392 reject_deletes: []
393
394 config :pleroma, :mrf_keyword,
395 reject: [],
396 federated_timeline_removal: [],
397 replace: []
398
399 config :pleroma, :mrf_hashtag,
400 sensitive: ["nsfw"],
401 reject: [],
402 federated_timeline_removal: []
403
404 config :pleroma, :mrf_subchain, match_actor: %{}
405
406 config :pleroma, :mrf_activity_expiration, days: 365
407
408 config :pleroma, :mrf_vocabulary,
409 accept: [],
410 reject: []
411
412 # threshold of 7 days
413 config :pleroma, :mrf_object_age,
414 threshold: 604_800,
415 actions: [:delist, :strip_followers]
416
417 config :pleroma, :mrf_follow_bot, follower_nickname: nil
418
419 config :pleroma, :rich_media,
420 enabled: true,
421 ignore_hosts: [],
422 ignore_tld: ["local", "localdomain", "lan"],
423 parsers: [
424 Pleroma.Web.RichMedia.Parsers.TwitterCard,
425 Pleroma.Web.RichMedia.Parsers.OEmbed
426 ],
427 failure_backoff: 60_000,
428 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
429
430 config :pleroma, :media_proxy,
431 enabled: false,
432 invalidation: [
433 enabled: false,
434 provider: Pleroma.Web.MediaProxy.Invalidation.Script
435 ],
436 proxy_opts: [
437 redirect_on_failure: false,
438 max_body_length: 25 * 1_048_576,
439 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
440 max_read_duration: 30_000,
441 http: [
442 follow_redirect: true,
443 pool: :media
444 ]
445 ],
446 whitelist: []
447
448 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
449 method: :purge,
450 headers: [],
451 options: []
452
453 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script,
454 script_path: nil,
455 url_format: nil
456
457 # Note: media preview proxy depends on media proxy to be enabled
458 config :pleroma, :media_preview_proxy,
459 enabled: false,
460 thumbnail_max_width: 600,
461 thumbnail_max_height: 600,
462 image_quality: 85,
463 min_content_length: 100 * 1024
464
465 config :pleroma, :shout,
466 enabled: true,
467 limit: 5_000
468
469 config :phoenix, :format_encoders, json: Jason, "activity+json": Jason
470
471 config :phoenix, :json_library, Jason
472
473 config :phoenix, :filter_parameters, ["password", "confirm"]
474
475 config :pleroma, :gopher,
476 enabled: false,
477 ip: {0, 0, 0, 0},
478 port: 9999
479
480 config :pleroma, Pleroma.Web.Metadata,
481 providers: [
482 Pleroma.Web.Metadata.Providers.OpenGraph,
483 Pleroma.Web.Metadata.Providers.TwitterCard
484 ],
485 unfurl_nsfw: false
486
487 config :pleroma, Pleroma.Web.Preload,
488 providers: [
489 Pleroma.Web.Preload.Providers.Instance
490 ]
491
492 config :pleroma, :http_security,
493 enabled: true,
494 sts: false,
495 sts_max_age: 31_536_000,
496 ct_max_age: 2_592_000,
497 referrer_policy: "same-origin"
498
499 config :cors_plug,
500 max_age: 86_400,
501 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
502 expose: [
503 "Link",
504 "X-RateLimit-Reset",
505 "X-RateLimit-Limit",
506 "X-RateLimit-Remaining",
507 "X-Request-Id",
508 "Idempotency-Key"
509 ],
510 credentials: true,
511 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
512
513 config :pleroma, Pleroma.User,
514 restricted_nicknames: [
515 ".well-known",
516 "~",
517 "about",
518 "activities",
519 "api",
520 "auth",
521 "check_password",
522 "dev",
523 "friend-requests",
524 "inbox",
525 "internal",
526 "main",
527 "media",
528 "nodeinfo",
529 "notice",
530 "oauth",
531 "objects",
532 "ostatus_subscribe",
533 "pleroma",
534 "proxy",
535 "push",
536 "registration",
537 "relay",
538 "settings",
539 "status",
540 "tag",
541 "user-search",
542 "user_exists",
543 "users",
544 "web",
545 "verify_credentials",
546 "update_credentials",
547 "relationships",
548 "search",
549 "confirmation_resend",
550 "mfa"
551 ],
552 email_blacklist: []
553
554 config :pleroma, Oban,
555 repo: Pleroma.Repo,
556 log: false,
557 queues: [
558 activity_expiration: 10,
559 token_expiration: 5,
560 filter_expiration: 1,
561 backup: 1,
562 federator_incoming: 50,
563 federator_outgoing: 50,
564 ingestion_queue: 50,
565 web_push: 50,
566 mailer: 10,
567 transmogrifier: 20,
568 scheduled_activities: 10,
569 poll_notifications: 10,
570 background: 5,
571 remote_fetcher: 2,
572 attachments_cleanup: 1,
573 new_users_digest: 1,
574 mute_expire: 5
575 ],
576 plugins: [Oban.Plugins.Pruner],
577 crontab: [
578 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
579 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
580 ]
581
582 config :pleroma, :workers,
583 retries: [
584 federator_incoming: 5,
585 federator_outgoing: 5
586 ]
587
588 config :pleroma, Pleroma.Formatter,
589 class: false,
590 rel: "ugc",
591 new_window: false,
592 truncate: false,
593 strip_prefix: false,
594 extra: true,
595 validate_tld: :no_scheme
596
597 config :pleroma, :ldap,
598 enabled: System.get_env("LDAP_ENABLED") == "true",
599 host: System.get_env("LDAP_HOST") || "localhost",
600 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
601 ssl: System.get_env("LDAP_SSL") == "true",
602 sslopts: [],
603 tls: System.get_env("LDAP_TLS") == "true",
604 tlsopts: [],
605 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
606 uid: System.get_env("LDAP_UID") || "cn"
607
608 config :esshd,
609 enabled: false
610
611 oauth_consumer_strategies =
612 System.get_env("OAUTH_CONSUMER_STRATEGIES")
613 |> to_string()
614 |> String.split()
615 |> Enum.map(&hd(String.split(&1, ":")))
616
617 ueberauth_providers =
618 for strategy <- oauth_consumer_strategies do
619 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
620 strategy_module = String.to_atom(strategy_module_name)
621 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
622 end
623
624 config :ueberauth,
625 Ueberauth,
626 base_path: "/oauth",
627 providers: ueberauth_providers
628
629 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
630
631 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
632
633 config :pleroma, Pleroma.Emails.UserEmail,
634 logo: nil,
635 styling: %{
636 link_color: "#d8a070",
637 background_color: "#2C3645",
638 content_background_color: "#1B2635",
639 header_color: "#d8a070",
640 text_color: "#b9b9ba",
641 text_muted_color: "#b9b9ba"
642 }
643
644 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
645
646 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter,
647 enabled: false,
648 auth: false,
649 ip_whitelist: [],
650 path: "/api/pleroma/app_metrics",
651 format: :text
652
653 config :pleroma, Pleroma.ScheduledActivity,
654 daily_user_limit: 25,
655 total_user_limit: 300,
656 enabled: true
657
658 config :pleroma, :email_notifications,
659 digest: %{
660 active: false,
661 interval: 7,
662 inactivity_threshold: 7
663 }
664
665 config :pleroma, :oauth2,
666 token_expires_in: 3600 * 24 * 365 * 100,
667 issue_new_refresh_token: true,
668 clean_expired_tokens: false
669
670 config :pleroma, :database, rum_enabled: false
671
672 config :pleroma, :features, improved_hashtag_timeline: :auto
673
674 config :pleroma, :populate_hashtags_table, fault_rate_allowance: 0.01
675
676 config :pleroma, :env, Mix.env()
677
678 config :http_signatures,
679 adapter: Pleroma.Signature
680
681 config :pleroma, :rate_limit,
682 authentication: {60_000, 15},
683 timeline: {500, 3},
684 search: [{1000, 10}, {1000, 30}],
685 app_account_creation: {1_800_000, 25},
686 relations_actions: {10_000, 10},
687 relation_id_action: {60_000, 2},
688 statuses_actions: {10_000, 15},
689 status_id_action: {60_000, 3},
690 password_reset: {1_800_000, 5},
691 account_confirmation_resend: {8_640_000, 5},
692 ap_routes: {60_000, 15}
693
694 config :pleroma, Pleroma.Workers.PurgeExpiredActivity, enabled: true, min_lifetime: 600
695
696 config :pleroma, Pleroma.Web.Plugs.RemoteIp,
697 enabled: true,
698 headers: ["x-forwarded-for"],
699 proxies: [],
700 reserved: [
701 "127.0.0.0/8",
702 "::1/128",
703 "fc00::/7",
704 "10.0.0.0/8",
705 "172.16.0.0/12",
706 "192.168.0.0/16"
707 ]
708
709 config :pleroma, :static_fe, enabled: false
710
711 # Example of frontend configuration
712 # This example will make us serve the primary frontend from the
713 # frontends directory within your `:pleroma, :instance, static_dir`.
714 # e.g., instance/static/frontends/pleroma/develop/
715 #
716 # With no frontend configuration, the bundled files from the `static` directory will
717 # be used.
718 #
719 # config :pleroma, :frontends,
720 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
721 # admin: %{"name" => "admin-fe", "ref" => "stable"},
722 # available: %{...}
723
724 config :pleroma, :frontends,
725 available: %{
726 "kenoma" => %{
727 "name" => "kenoma",
728 "git" => "https://git.pleroma.social/lambadalambda/kenoma",
729 "build_url" =>
730 "https://git.pleroma.social/lambadalambda/kenoma/-/jobs/artifacts/${ref}/download?job=build",
731 "ref" => "master"
732 },
733 "pleroma-fe" => %{
734 "name" => "pleroma-fe",
735 "git" => "https://git.pleroma.social/pleroma/pleroma-fe",
736 "build_url" =>
737 "https://git.pleroma.social/pleroma/pleroma-fe/-/jobs/artifacts/${ref}/download?job=build",
738 "ref" => "develop"
739 },
740 "fedi-fe" => %{
741 "name" => "fedi-fe",
742 "git" => "https://git.pleroma.social/pleroma/fedi-fe",
743 "build_url" =>
744 "https://git.pleroma.social/pleroma/fedi-fe/-/jobs/artifacts/${ref}/download?job=build",
745 "ref" => "master",
746 "custom-http-headers" => [
747 {"service-worker-allowed", "/"}
748 ]
749 },
750 "admin-fe" => %{
751 "name" => "admin-fe",
752 "git" => "https://git.pleroma.social/pleroma/admin-fe",
753 "build_url" =>
754 "https://git.pleroma.social/pleroma/admin-fe/-/jobs/artifacts/${ref}/download?job=build",
755 "ref" => "develop"
756 },
757 "soapbox-fe" => %{
758 "name" => "soapbox-fe",
759 "git" => "https://gitlab.com/soapbox-pub/soapbox-fe",
760 "build_url" =>
761 "https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/${ref}/download?job=build-production",
762 "ref" => "v1.0.0",
763 "build_dir" => "static"
764 }
765 }
766
767 config :pleroma, :web_cache_ttl,
768 activity_pub: nil,
769 activity_pub_question: 30_000
770
771 config :pleroma, :modules, runtime_dir: "instance/modules"
772
773 config :pleroma, configurable_from_database: false
774
775 config :pleroma, Pleroma.Repo,
776 parameters: [gin_fuzzy_search_limit: "500"],
777 prepare: :unnamed
778
779 config :pleroma, :connections_pool,
780 reclaim_multiplier: 0.1,
781 connection_acquisition_wait: 250,
782 connection_acquisition_retries: 5,
783 max_connections: 250,
784 max_idle_time: 30_000,
785 retry: 0,
786 connect_timeout: 5_000
787
788 config :pleroma, :pools,
789 federation: [
790 size: 50,
791 max_waiting: 10,
792 recv_timeout: 10_000
793 ],
794 media: [
795 size: 50,
796 max_waiting: 20,
797 recv_timeout: 15_000
798 ],
799 upload: [
800 size: 25,
801 max_waiting: 5,
802 recv_timeout: 15_000
803 ],
804 default: [
805 size: 10,
806 max_waiting: 2,
807 recv_timeout: 5_000
808 ]
809
810 config :pleroma, :hackney_pools,
811 federation: [
812 max_connections: 50,
813 timeout: 150_000
814 ],
815 media: [
816 max_connections: 50,
817 timeout: 150_000
818 ],
819 upload: [
820 max_connections: 25,
821 timeout: 300_000
822 ]
823
824 config :pleroma, :majic_pool, size: 2
825
826 private_instance? = :if_instance_is_private
827
828 config :pleroma, :restrict_unauthenticated,
829 timelines: %{local: private_instance?, federated: private_instance?},
830 profiles: %{local: private_instance?, remote: private_instance?},
831 activities: %{local: private_instance?, remote: private_instance?}
832
833 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
834
835 config :pleroma, :mrf,
836 policies: [Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy, Pleroma.Web.ActivityPub.MRF.TagPolicy],
837 transparency: true,
838 transparency_exclusions: []
839
840 config :tzdata, :http_client, Pleroma.HTTP.Tzdata
841
842 config :ex_aws, http_client: Pleroma.HTTP.ExAws
843
844 config :web_push_encryption, http_client: Pleroma.HTTP.WebPush
845
846 config :pleroma, :instances_favicons, enabled: false
847
848 config :floki, :html_parser, Floki.HTMLParser.FastHtml
849
850 config :pleroma, Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator
851
852 config :pleroma, Pleroma.User.Backup,
853 purge_after_days: 30,
854 limit_days: 7,
855 dir: nil
856
857 config :pleroma, ConcurrentLimiter, [
858 {Pleroma.Web.RichMedia.Helpers, [max_running: 5, max_waiting: 5]},
859 {Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy, [max_running: 5, max_waiting: 5]}
860 ]
861
862 config :pleroma, :telemetry,
863 slow_queries_logging: [
864 enabled: false,
865 min_duration: 500_000,
866 exclude_sources: [nil, "oban_jobs"]
867 ]
868
869 # Import environment specific config. This must remain at the bottom
870 # of this file so it overrides the configuration defined above.
871 import_config "#{Mix.env()}.exs"