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