Merge branch 'poll-notification' 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 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 remote_limit: 100_000,
194 upload_limit: 16_000_000,
195 avatar_upload_limit: 2_000_000,
196 background_upload_limit: 4_000_000,
197 banner_upload_limit: 4_000_000,
198 poll_limits: %{
199 max_options: 20,
200 max_option_chars: 200,
201 min_expiration: 0,
202 max_expiration: 365 * 24 * 60 * 60
203 },
204 registrations_open: true,
205 invites_enabled: false,
206 account_activation_required: false,
207 account_approval_required: false,
208 federating: true,
209 federation_incoming_replies_max_depth: 100,
210 federation_reachability_timeout_days: 7,
211 federation_publisher_modules: [
212 Pleroma.Web.ActivityPub.Publisher
213 ],
214 allow_relay: true,
215 public: true,
216 quarantined_instances: [],
217 static_dir: "instance/static/",
218 allowed_post_formats: [
219 "text/plain",
220 "text/html",
221 "text/markdown",
222 "text/bbcode"
223 ],
224 autofollowed_nicknames: [],
225 autofollowing_nicknames: [],
226 max_pinned_statuses: 1,
227 attachment_links: false,
228 max_report_comment_size: 1000,
229 safe_dm_mentions: false,
230 healthcheck: false,
231 remote_post_retention_days: 90,
232 skip_thread_containment: true,
233 limit_to_local_content: :unauthenticated,
234 user_bio_length: 5000,
235 user_name_length: 100,
236 max_account_fields: 10,
237 max_remote_account_fields: 20,
238 account_field_name_length: 512,
239 account_field_value_length: 2048,
240 registration_reason_length: 500,
241 external_user_synchronization: true,
242 extended_nickname_format: true,
243 cleanup_attachments: false,
244 multi_factor_authentication: [
245 totp: [
246 # digits 6 or 8
247 digits: 6,
248 period: 30
249 ],
250 backup_codes: [
251 number: 5,
252 length: 16
253 ]
254 ],
255 show_reactions: true,
256 password_reset_token_validity: 60 * 60 * 24
257
258 config :pleroma, :welcome,
259 direct_message: [
260 enabled: false,
261 sender_nickname: nil,
262 message: nil
263 ],
264 chat_message: [
265 enabled: false,
266 sender_nickname: nil,
267 message: nil
268 ],
269 email: [
270 enabled: false,
271 sender: nil,
272 subject: "Welcome to <%= instance_name %>",
273 html: "Welcome to <%= instance_name %>",
274 text: "Welcome to <%= instance_name %>"
275 ]
276
277 config :pleroma, :feed,
278 post_title: %{
279 max_length: 100,
280 omission: "..."
281 }
282
283 config :pleroma, :markup,
284 # XXX - unfortunately, inline images must be enabled by default right now, because
285 # of custom emoji. Issue #275 discusses defanging that somehow.
286 allow_inline_images: true,
287 allow_headings: false,
288 allow_tables: false,
289 allow_fonts: false,
290 scrub_policy: [
291 Pleroma.HTML.Scrubber.Default,
292 Pleroma.HTML.Transform.MediaProxy
293 ]
294
295 config :pleroma, :frontend_configurations,
296 pleroma_fe: %{
297 alwaysShowSubjectInput: true,
298 background: "/images/city.jpg",
299 collapseMessageWithSubject: false,
300 disableChat: false,
301 greentext: false,
302 hideFilteredStatuses: false,
303 hideMutedPosts: false,
304 hidePostStats: false,
305 hideSitename: false,
306 hideUserStats: false,
307 loginMethod: "password",
308 logo: "/static/logo.svg",
309 logoMargin: ".1em",
310 logoMask: true,
311 minimalScopesMode: false,
312 noAttachmentLinks: false,
313 nsfwCensorImage: "",
314 postContentType: "text/plain",
315 redirectRootLogin: "/main/friends",
316 redirectRootNoLogin: "/main/all",
317 scopeCopy: true,
318 sidebarRight: false,
319 showFeaturesPanel: true,
320 showInstanceSpecificPanel: false,
321 subjectLineBehavior: "email",
322 theme: "pleroma-dark",
323 webPushNotifications: false
324 },
325 masto_fe: %{
326 showInstanceSpecificPanel: true
327 }
328
329 config :pleroma, :assets,
330 mascots: [
331 pleroma_fox_tan: %{
332 url: "/images/pleroma-fox-tan-smol.png",
333 mime_type: "image/png"
334 },
335 pleroma_fox_tan_shy: %{
336 url: "/images/pleroma-fox-tan-shy.png",
337 mime_type: "image/png"
338 }
339 ],
340 default_mascot: :pleroma_fox_tan
341
342 config :pleroma, :manifest,
343 icons: [
344 %{
345 src: "/static/logo.svg",
346 type: "image/svg+xml"
347 }
348 ],
349 theme_color: "#282c37",
350 background_color: "#191b22"
351
352 config :pleroma, :activitypub,
353 unfollow_blocked: true,
354 outgoing_blocks: true,
355 follow_handshake_timeout: 500,
356 note_replies_output_limit: 5,
357 sign_object_fetches: true,
358 authorized_fetch_mode: false
359
360 config :pleroma, :streamer,
361 workers: 3,
362 overflow_workers: 2
363
364 config :pleroma, :user, deny_follow_blocked: true
365
366 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
367
368 config :pleroma, :mrf_rejectnonpublic,
369 allow_followersonly: false,
370 allow_direct: false
371
372 config :pleroma, :mrf_hellthread,
373 delist_threshold: 10,
374 reject_threshold: 20
375
376 config :pleroma, :mrf_simple,
377 media_removal: [],
378 media_nsfw: [],
379 federated_timeline_removal: [],
380 report_removal: [],
381 reject: [],
382 followers_only: [],
383 accept: [],
384 avatar_removal: [],
385 banner_removal: [],
386 reject_deletes: []
387
388 config :pleroma, :mrf_keyword,
389 reject: [],
390 federated_timeline_removal: [],
391 replace: []
392
393 config :pleroma, :mrf_hashtag,
394 sensitive: ["nsfw"],
395 reject: [],
396 federated_timeline_removal: []
397
398 config :pleroma, :mrf_subchain, match_actor: %{}
399
400 config :pleroma, :mrf_activity_expiration, days: 365
401
402 config :pleroma, :mrf_vocabulary,
403 accept: [],
404 reject: []
405
406 # threshold of 7 days
407 config :pleroma, :mrf_object_age,
408 threshold: 604_800,
409 actions: [:delist, :strip_followers]
410
411 config :pleroma, :mrf_follow_bot, follower_nickname: nil
412
413 config :pleroma, :rich_media,
414 enabled: true,
415 ignore_hosts: [],
416 ignore_tld: ["local", "localdomain", "lan"],
417 parsers: [
418 Pleroma.Web.RichMedia.Parsers.TwitterCard,
419 Pleroma.Web.RichMedia.Parsers.OEmbed
420 ],
421 failure_backoff: 60_000,
422 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
423
424 config :pleroma, :media_proxy,
425 enabled: false,
426 invalidation: [
427 enabled: false,
428 provider: Pleroma.Web.MediaProxy.Invalidation.Script
429 ],
430 proxy_opts: [
431 redirect_on_failure: false,
432 max_body_length: 25 * 1_048_576,
433 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
434 max_read_duration: 30_000,
435 http: [
436 follow_redirect: true,
437 pool: :media
438 ]
439 ],
440 whitelist: []
441
442 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
443 method: :purge,
444 headers: [],
445 options: []
446
447 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script,
448 script_path: nil,
449 url_format: nil
450
451 # Note: media preview proxy depends on media proxy to be enabled
452 config :pleroma, :media_preview_proxy,
453 enabled: false,
454 thumbnail_max_width: 600,
455 thumbnail_max_height: 600,
456 image_quality: 85,
457 min_content_length: 100 * 1024
458
459 config :pleroma, :shout,
460 enabled: true,
461 limit: 5_000
462
463 config :phoenix, :format_encoders, json: Jason, "activity+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 filter_expiration: 1,
555 backup: 1,
556 federator_incoming: 50,
557 federator_outgoing: 50,
558 ingestion_queue: 50,
559 web_push: 50,
560 mailer: 10,
561 transmogrifier: 20,
562 scheduled_activities: 10,
563 poll_notifications: 10,
564 background: 5,
565 remote_fetcher: 2,
566 attachments_cleanup: 1,
567 new_users_digest: 1,
568 mute_expire: 5
569 ],
570 plugins: [Oban.Plugins.Pruner],
571 crontab: [
572 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
573 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
574 ]
575
576 config :pleroma, :workers,
577 retries: [
578 federator_incoming: 5,
579 federator_outgoing: 5
580 ]
581
582 config :pleroma, Pleroma.Formatter,
583 class: false,
584 rel: "ugc",
585 new_window: false,
586 truncate: false,
587 strip_prefix: false,
588 extra: true,
589 validate_tld: :no_scheme
590
591 config :pleroma, :ldap,
592 enabled: System.get_env("LDAP_ENABLED") == "true",
593 host: System.get_env("LDAP_HOST") || "localhost",
594 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
595 ssl: System.get_env("LDAP_SSL") == "true",
596 sslopts: [],
597 tls: System.get_env("LDAP_TLS") == "true",
598 tlsopts: [],
599 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
600 uid: System.get_env("LDAP_UID") || "cn"
601
602 config :esshd,
603 enabled: false
604
605 oauth_consumer_strategies =
606 System.get_env("OAUTH_CONSUMER_STRATEGIES")
607 |> to_string()
608 |> String.split()
609 |> Enum.map(&hd(String.split(&1, ":")))
610
611 ueberauth_providers =
612 for strategy <- oauth_consumer_strategies do
613 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
614 strategy_module = String.to_atom(strategy_module_name)
615 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
616 end
617
618 config :ueberauth,
619 Ueberauth,
620 base_path: "/oauth",
621 providers: ueberauth_providers
622
623 config :pleroma, :auth, 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: 3600 * 24 * 365 * 100,
661 issue_new_refresh_token: true,
662 clean_expired_tokens: false
663
664 config :pleroma, :database, rum_enabled: false
665
666 config :pleroma, :features, improved_hashtag_timeline: :auto
667
668 config :pleroma, :populate_hashtags_table, fault_rate_allowance: 0.01
669
670 config :pleroma, :env, Mix.env()
671
672 config :http_signatures,
673 adapter: Pleroma.Signature
674
675 config :pleroma, :rate_limit,
676 authentication: {60_000, 15},
677 timeline: {500, 3},
678 search: [{1000, 10}, {1000, 30}],
679 app_account_creation: {1_800_000, 25},
680 relations_actions: {10_000, 10},
681 relation_id_action: {60_000, 2},
682 statuses_actions: {10_000, 15},
683 status_id_action: {60_000, 3},
684 password_reset: {1_800_000, 5},
685 account_confirmation_resend: {8_640_000, 5},
686 ap_routes: {60_000, 15}
687
688 config :pleroma, Pleroma.Workers.PurgeExpiredActivity, enabled: true, min_lifetime: 600
689
690 config :pleroma, Pleroma.Web.Plugs.RemoteIp,
691 enabled: true,
692 headers: ["x-forwarded-for"],
693 proxies: [],
694 reserved: [
695 "127.0.0.0/8",
696 "::1/128",
697 "fc00::/7",
698 "10.0.0.0/8",
699 "172.16.0.0/12",
700 "192.168.0.0/16"
701 ]
702
703 config :pleroma, :static_fe, enabled: false
704
705 # Example of frontend configuration
706 # This example will make us serve the primary frontend from the
707 # frontends directory within your `:pleroma, :instance, static_dir`.
708 # e.g., instance/static/frontends/pleroma/develop/
709 #
710 # With no frontend configuration, the bundled files from the `static` directory will
711 # be used.
712 #
713 # config :pleroma, :frontends,
714 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
715 # admin: %{"name" => "admin-fe", "ref" => "stable"},
716 # available: %{...}
717
718 config :pleroma, :frontends,
719 available: %{
720 "kenoma" => %{
721 "name" => "kenoma",
722 "git" => "https://git.pleroma.social/lambadalambda/kenoma",
723 "build_url" =>
724 "https://git.pleroma.social/lambadalambda/kenoma/-/jobs/artifacts/${ref}/download?job=build",
725 "ref" => "master"
726 },
727 "pleroma-fe" => %{
728 "name" => "pleroma-fe",
729 "git" => "https://git.pleroma.social/pleroma/pleroma-fe",
730 "build_url" =>
731 "https://git.pleroma.social/pleroma/pleroma-fe/-/jobs/artifacts/${ref}/download?job=build",
732 "ref" => "develop"
733 },
734 "fedi-fe" => %{
735 "name" => "fedi-fe",
736 "git" => "https://git.pleroma.social/pleroma/fedi-fe",
737 "build_url" =>
738 "https://git.pleroma.social/pleroma/fedi-fe/-/jobs/artifacts/${ref}/download?job=build",
739 "ref" => "master",
740 "custom-http-headers" => [
741 {"service-worker-allowed", "/"}
742 ]
743 },
744 "admin-fe" => %{
745 "name" => "admin-fe",
746 "git" => "https://git.pleroma.social/pleroma/admin-fe",
747 "build_url" =>
748 "https://git.pleroma.social/pleroma/admin-fe/-/jobs/artifacts/${ref}/download?job=build",
749 "ref" => "develop"
750 },
751 "soapbox-fe" => %{
752 "name" => "soapbox-fe",
753 "git" => "https://gitlab.com/soapbox-pub/soapbox-fe",
754 "build_url" =>
755 "https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/${ref}/download?job=build-production",
756 "ref" => "v1.0.0",
757 "build_dir" => "static"
758 }
759 }
760
761 config :pleroma, :web_cache_ttl,
762 activity_pub: nil,
763 activity_pub_question: 30_000
764
765 config :pleroma, :modules, runtime_dir: "instance/modules"
766
767 config :pleroma, configurable_from_database: false
768
769 config :pleroma, Pleroma.Repo,
770 parameters: [gin_fuzzy_search_limit: "500"],
771 prepare: :unnamed
772
773 config :pleroma, :connections_pool,
774 reclaim_multiplier: 0.1,
775 connection_acquisition_wait: 250,
776 connection_acquisition_retries: 5,
777 max_connections: 250,
778 max_idle_time: 30_000,
779 retry: 0,
780 connect_timeout: 5_000
781
782 config :pleroma, :pools,
783 federation: [
784 size: 50,
785 max_waiting: 10,
786 recv_timeout: 10_000
787 ],
788 media: [
789 size: 50,
790 max_waiting: 20,
791 recv_timeout: 15_000
792 ],
793 upload: [
794 size: 25,
795 max_waiting: 5,
796 recv_timeout: 15_000
797 ],
798 default: [
799 size: 10,
800 max_waiting: 2,
801 recv_timeout: 5_000
802 ]
803
804 config :pleroma, :hackney_pools,
805 federation: [
806 max_connections: 50,
807 timeout: 150_000
808 ],
809 media: [
810 max_connections: 50,
811 timeout: 150_000
812 ],
813 upload: [
814 max_connections: 25,
815 timeout: 300_000
816 ]
817
818 config :pleroma, :majic_pool, size: 2
819
820 private_instance? = :if_instance_is_private
821
822 config :pleroma, :restrict_unauthenticated,
823 timelines: %{local: private_instance?, federated: private_instance?},
824 profiles: %{local: private_instance?, remote: private_instance?},
825 activities: %{local: private_instance?, remote: private_instance?}
826
827 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
828
829 config :pleroma, :mrf,
830 policies: [Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy, Pleroma.Web.ActivityPub.MRF.TagPolicy],
831 transparency: true,
832 transparency_exclusions: []
833
834 config :tzdata, :http_client, Pleroma.HTTP.Tzdata
835
836 config :ex_aws, http_client: Pleroma.HTTP.ExAws
837
838 config :web_push_encryption, http_client: Pleroma.HTTP.WebPush
839
840 config :pleroma, :instances_favicons, enabled: false
841
842 config :floki, :html_parser, Floki.HTMLParser.FastHtml
843
844 config :pleroma, Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator
845
846 config :pleroma, Pleroma.User.Backup,
847 purge_after_days: 30,
848 limit_days: 7,
849 dir: nil
850
851 config :pleroma, ConcurrentLimiter, [
852 {Pleroma.Web.RichMedia.Helpers, [max_running: 5, max_waiting: 5]},
853 {Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy, [max_running: 5, max_waiting: 5]}
854 ]
855
856 # Import environment specific config. This must remain at the bottom
857 # of this file so it overrides the configuration defined above.
858 import_config "#{Mix.env()}.exs"