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