Purge gopher frontend
[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 "hyper",
101 "ipfs",
102 "ipns",
103 "irc",
104 "ircs",
105 "magnet",
106 "mailto",
107 "mumble",
108 "ssb",
109 "xmpp"
110 ]
111
112 websocket_config = [
113 path: "/websocket",
114 serializer: [
115 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
116 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
117 ],
118 timeout: 60_000,
119 transport_log: false,
120 compress: false
121 ]
122
123 # Configures the endpoint
124 config :pleroma, Pleroma.Web.Endpoint,
125 url: [host: "localhost"],
126 http: [
127 ip: {127, 0, 0, 1},
128 dispatch: [
129 {:_,
130 [
131 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
132 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
133 {Phoenix.Transports.WebSocket,
134 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
135 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
136 ]}
137 ]
138 ],
139 protocol: "https",
140 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
141 live_view: [signing_salt: "U5ELgdEwTD3n1+D5s0rY0AMg8/y1STxZ3Zvsl3bWh+oBcGrYdil0rXqPMRd3Glcq"],
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, truncate: 65536
152
153 config :logger, :console,
154 level: :info,
155 format: "\n$time $metadata[$level] $message\n",
156 metadata: [:request_id]
157
158 config :logger, :ex_syslogger,
159 level: :info,
160 ident: "pleroma",
161 format: "$metadata[$level] $message",
162 metadata: [:request_id]
163
164 config :quack,
165 level: :warn,
166 meta: [:all],
167 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
168
169 config :mime, :types, %{
170 "application/xml" => ["xml"],
171 "application/xrd+xml" => ["xrd+xml"],
172 "application/jrd+json" => ["jrd+json"],
173 "application/activity+json" => ["activity+json"],
174 "application/ld+json" => ["activity+json"]
175 }
176
177 config :tesla, adapter: Tesla.Adapter.Hackney
178
179 # Configures http settings, upstream proxy etc.
180 config :pleroma, :http,
181 proxy_url: nil,
182 send_user_agent: true,
183 user_agent: :default,
184 adapter: []
185
186 config :pleroma, :instance,
187 name: "Pleroma",
188 email: "example@example.com",
189 notify_email: "noreply@example.com",
190 description: "Pleroma: An efficient and flexible fediverse server",
191 background_image: "/images/city.jpg",
192 instance_thumbnail: "/instance/thumbnail.jpeg",
193 limit: 5_000,
194 description_limit: 5_000,
195 remote_limit: 100_000,
196 upload_limit: 16_000_000,
197 avatar_upload_limit: 2_000_000,
198 background_upload_limit: 4_000_000,
199 banner_upload_limit: 4_000_000,
200 poll_limits: %{
201 max_options: 20,
202 max_option_chars: 200,
203 min_expiration: 0,
204 max_expiration: 365 * 24 * 60 * 60
205 },
206 registrations_open: true,
207 invites_enabled: false,
208 account_activation_required: false,
209 account_approval_required: false,
210 federating: true,
211 federation_incoming_replies_max_depth: 100,
212 federation_reachability_timeout_days: 7,
213 federation_publisher_modules: [
214 Pleroma.Web.ActivityPub.Publisher
215 ],
216 allow_relay: true,
217 public: true,
218 quarantined_instances: [],
219 static_dir: "instance/static/",
220 allowed_post_formats: [
221 "text/plain",
222 "text/html",
223 "text/markdown",
224 "text/bbcode",
225 "text/x.misskeymarkdown"
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, Pleroma.Web.Metadata,
477 providers: [
478 Pleroma.Web.Metadata.Providers.OpenGraph,
479 Pleroma.Web.Metadata.Providers.TwitterCard
480 ],
481 unfurl_nsfw: false
482
483 config :pleroma, Pleroma.Web.Preload,
484 providers: [
485 Pleroma.Web.Preload.Providers.Instance
486 ]
487
488 config :pleroma, :http_security,
489 enabled: true,
490 sts: false,
491 sts_max_age: 31_536_000,
492 ct_max_age: 2_592_000,
493 referrer_policy: "same-origin"
494
495 config :cors_plug,
496 max_age: 86_400,
497 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
498 expose: [
499 "Link",
500 "X-RateLimit-Reset",
501 "X-RateLimit-Limit",
502 "X-RateLimit-Remaining",
503 "X-Request-Id",
504 "Idempotency-Key"
505 ],
506 credentials: true,
507 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
508
509 config :pleroma, Pleroma.User,
510 restricted_nicknames: [
511 ".well-known",
512 "~",
513 "about",
514 "activities",
515 "api",
516 "auth",
517 "check_password",
518 "dev",
519 "friend-requests",
520 "inbox",
521 "internal",
522 "main",
523 "media",
524 "nodeinfo",
525 "notice",
526 "oauth",
527 "objects",
528 "ostatus_subscribe",
529 "pleroma",
530 "proxy",
531 "push",
532 "registration",
533 "relay",
534 "settings",
535 "status",
536 "tag",
537 "user-search",
538 "user_exists",
539 "users",
540 "web",
541 "verify_credentials",
542 "update_credentials",
543 "relationships",
544 "search",
545 "confirmation_resend",
546 "mfa"
547 ],
548 email_blacklist: []
549
550 config :pleroma, Oban,
551 repo: Pleroma.Repo,
552 log: false,
553 queues: [
554 activity_expiration: 10,
555 token_expiration: 5,
556 filter_expiration: 1,
557 backup: 1,
558 federator_incoming: 50,
559 federator_outgoing: 50,
560 ingestion_queue: 50,
561 web_push: 50,
562 mailer: 10,
563 transmogrifier: 20,
564 scheduled_activities: 10,
565 poll_notifications: 10,
566 background: 5,
567 remote_fetcher: 2,
568 attachments_cleanup: 1,
569 new_users_digest: 1,
570 mute_expire: 5
571 ],
572 plugins: [Oban.Plugins.Pruner],
573 crontab: [
574 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
575 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
576 ]
577
578 config :pleroma, :workers,
579 retries: [
580 federator_incoming: 5,
581 federator_outgoing: 5
582 ]
583
584 config :pleroma, Pleroma.Formatter,
585 class: false,
586 rel: "ugc",
587 new_window: false,
588 truncate: false,
589 strip_prefix: false,
590 extra: true,
591 validate_tld: :no_scheme
592
593 config :pleroma, :ldap,
594 enabled: System.get_env("LDAP_ENABLED") == "true",
595 host: System.get_env("LDAP_HOST") || "localhost",
596 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
597 ssl: System.get_env("LDAP_SSL") == "true",
598 sslopts: [],
599 tls: System.get_env("LDAP_TLS") == "true",
600 tlsopts: [],
601 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
602 uid: System.get_env("LDAP_UID") || "cn"
603
604 oauth_consumer_strategies =
605 System.get_env("OAUTH_CONSUMER_STRATEGIES")
606 |> to_string()
607 |> String.split()
608 |> Enum.map(&hd(String.split(&1, ":")))
609
610 ueberauth_providers =
611 for strategy <- oauth_consumer_strategies do
612 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
613 strategy_module = String.to_atom(strategy_module_name)
614 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
615 end
616
617 config :ueberauth,
618 Ueberauth,
619 base_path: "/oauth",
620 providers: ueberauth_providers
621
622 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
623
624 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
625
626 config :pleroma, Pleroma.Emails.UserEmail,
627 logo: nil,
628 styling: %{
629 link_color: "#d8a070",
630 background_color: "#2C3645",
631 content_background_color: "#1B2635",
632 header_color: "#d8a070",
633 text_color: "#b9b9ba",
634 text_muted_color: "#b9b9ba"
635 }
636
637 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
638
639 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter,
640 enabled: false,
641 auth: false,
642 ip_whitelist: [],
643 path: "/api/pleroma/app_metrics",
644 format: :text
645
646 config :pleroma, Pleroma.ScheduledActivity,
647 daily_user_limit: 25,
648 total_user_limit: 300,
649 enabled: true
650
651 config :pleroma, :email_notifications,
652 digest: %{
653 active: false,
654 interval: 7,
655 inactivity_threshold: 7
656 }
657
658 config :pleroma, :oauth2,
659 token_expires_in: 3600 * 24 * 365 * 100,
660 issue_new_refresh_token: true,
661 clean_expired_tokens: false
662
663 config :pleroma, :database, rum_enabled: false
664
665 config :pleroma, :features, improved_hashtag_timeline: :auto
666
667 config :pleroma, :populate_hashtags_table, fault_rate_allowance: 0.01
668
669 config :pleroma, :env, Mix.env()
670
671 config :http_signatures,
672 adapter: Pleroma.Signature
673
674 config :pleroma, :rate_limit,
675 authentication: {60_000, 15},
676 timeline: {500, 3},
677 search: [{1000, 10}, {1000, 30}],
678 app_account_creation: {1_800_000, 25},
679 relations_actions: {10_000, 10},
680 relation_id_action: {60_000, 2},
681 statuses_actions: {10_000, 15},
682 status_id_action: {60_000, 3},
683 password_reset: {1_800_000, 5},
684 account_confirmation_resend: {8_640_000, 5},
685 ap_routes: {60_000, 15}
686
687 config :pleroma, Pleroma.Workers.PurgeExpiredActivity, enabled: true, min_lifetime: 600
688
689 config :pleroma, Pleroma.Web.Plugs.RemoteIp,
690 enabled: true,
691 headers: ["x-forwarded-for"],
692 proxies: [],
693 reserved: [
694 "127.0.0.0/8",
695 "::1/128",
696 "fc00::/7",
697 "10.0.0.0/8",
698 "172.16.0.0/12",
699 "192.168.0.0/16"
700 ]
701
702 config :pleroma, :static_fe, enabled: false
703
704 # Example of frontend configuration
705 # This example will make us serve the primary frontend from the
706 # frontends directory within your `:pleroma, :instance, static_dir`.
707 # e.g., instance/static/frontends/pleroma/develop/
708 #
709 # With no frontend configuration, the bundled files from the `static` directory will
710 # be used.
711 #
712 # config :pleroma, :frontends,
713 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
714 # admin: %{"name" => "admin-fe", "ref" => "stable"},
715 # available: %{...}
716
717 config :pleroma, :frontends,
718 available: %{
719 "kenoma" => %{
720 "name" => "kenoma",
721 "git" => "https://git.pleroma.social/lambadalambda/kenoma",
722 "build_url" =>
723 "https://git.pleroma.social/lambadalambda/kenoma/-/jobs/artifacts/${ref}/download?job=build",
724 "ref" => "master"
725 },
726 "pleroma-fe" => %{
727 "name" => "pleroma-fe",
728 "git" => "https://akkoma.dev/AkkomaGang/pleroma-fe",
729 "build_url" => "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/akkoma-fe.zip",
730 "ref" => "develop",
731 "build_dir" => "dist"
732 },
733 "fedi-fe" => %{
734 "name" => "fedi-fe",
735 "git" => "https://git.pleroma.social/pleroma/fedi-fe",
736 "build_url" =>
737 "https://git.pleroma.social/pleroma/fedi-fe/-/jobs/artifacts/${ref}/download?job=build",
738 "ref" => "master",
739 "custom-http-headers" => [
740 {"service-worker-allowed", "/"}
741 ]
742 },
743 "admin-fe" => %{
744 "name" => "admin-fe",
745 "git" => "https://git.pleroma.social/pleroma/admin-fe",
746 "build_url" =>
747 "https://git.pleroma.social/pleroma/admin-fe/-/jobs/artifacts/${ref}/download?job=build",
748 "ref" => "develop"
749 },
750 "soapbox-fe" => %{
751 "name" => "soapbox-fe",
752 "git" => "https://gitlab.com/soapbox-pub/soapbox-fe",
753 "build_url" =>
754 "https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/${ref}/download?job=build-production",
755 "ref" => "v1.0.0",
756 "build_dir" => "static"
757 }
758 }
759
760 config :pleroma, :web_cache_ttl,
761 activity_pub: nil,
762 activity_pub_question: 30_000
763
764 config :pleroma, :modules, runtime_dir: "instance/modules"
765
766 config :pleroma, configurable_from_database: false
767
768 config :pleroma, Pleroma.Repo,
769 parameters: [gin_fuzzy_search_limit: "500"],
770 prepare: :unnamed
771
772 config :pleroma, :connections_pool,
773 reclaim_multiplier: 0.1,
774 connection_acquisition_wait: 250,
775 connection_acquisition_retries: 5,
776 max_connections: 250,
777 max_idle_time: 30_000,
778 retry: 0,
779 connect_timeout: 5_000
780
781 config :pleroma, :pools,
782 federation: [
783 size: 50,
784 max_waiting: 10,
785 recv_timeout: 10_000
786 ],
787 media: [
788 size: 50,
789 max_waiting: 20,
790 recv_timeout: 15_000
791 ],
792 upload: [
793 size: 25,
794 max_waiting: 5,
795 recv_timeout: 15_000
796 ],
797 default: [
798 size: 10,
799 max_waiting: 2,
800 recv_timeout: 5_000
801 ]
802
803 config :pleroma, :hackney_pools,
804 federation: [
805 max_connections: 50,
806 timeout: 150_000
807 ],
808 media: [
809 max_connections: 50,
810 timeout: 150_000
811 ],
812 upload: [
813 max_connections: 25,
814 timeout: 300_000
815 ]
816
817 config :pleroma, :majic_pool, size: 2
818
819 private_instance? = :if_instance_is_private
820
821 config :pleroma, :restrict_unauthenticated,
822 timelines: %{local: private_instance?, federated: private_instance?},
823 profiles: %{local: private_instance?, remote: private_instance?},
824 activities: %{local: private_instance?, remote: private_instance?}
825
826 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
827
828 config :pleroma, :mrf,
829 policies: [Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy, Pleroma.Web.ActivityPub.MRF.TagPolicy],
830 transparency: true,
831 transparency_exclusions: []
832
833 config :tzdata, :http_client, Pleroma.HTTP.Tzdata
834
835 config :ex_aws, http_client: Pleroma.HTTP.ExAws
836
837 config :web_push_encryption, http_client: Pleroma.HTTP.WebPush
838
839 config :pleroma, :instances_favicons, enabled: false
840
841 config :floki, :html_parser, Floki.HTMLParser.FastHtml
842
843 config :pleroma, Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator
844
845 config :pleroma, Pleroma.User.Backup,
846 purge_after_days: 30,
847 limit_days: 7,
848 dir: nil
849
850 config :pleroma, ConcurrentLimiter, [
851 {Pleroma.Web.RichMedia.Helpers, [max_running: 5, max_waiting: 5]},
852 {Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy, [max_running: 5, max_waiting: 5]}
853 ]
854
855 config :pleroma, :search, provider: Pleroma.Search.Builtin
856
857 config :pleroma, :telemetry,
858 slow_queries_logging: [
859 enabled: false,
860 min_duration: 500_000,
861 exclude_sources: [nil, "oban_jobs"]
862 ]
863
864 # Import environment specific config. This must remain at the bottom
865 # of this file so it overrides the configuration defined above.
866 import_config "#{Mix.env()}.exs"