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