c9592511f229dc6cd51061904e59bcb9b197ffd8
[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, :console,
153 level: :debug,
154 format: "\n$time $metadata[$level] $message\n",
155 metadata: [:request_id]
156
157 config :logger, :ex_syslogger,
158 level: :debug,
159 ident: "pleroma",
160 format: "$metadata[$level] $message",
161 metadata: [:request_id]
162
163 config :quack,
164 level: :warn,
165 meta: [:all],
166 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
167
168 config :mime, :types, %{
169 "application/xml" => ["xml"],
170 "application/xrd+xml" => ["xrd+xml"],
171 "application/jrd+json" => ["jrd+json"],
172 "application/activity+json" => ["activity+json"],
173 "application/ld+json" => ["activity+json"]
174 }
175
176 config :tesla, adapter: Tesla.Adapter.Hackney
177
178 # Configures http settings, upstream proxy etc.
179 config :pleroma, :http,
180 proxy_url: nil,
181 send_user_agent: true,
182 user_agent: :default,
183 adapter: []
184
185 config :pleroma, :instance,
186 name: "Pleroma",
187 email: "example@example.com",
188 notify_email: "noreply@example.com",
189 description: "Pleroma: An efficient and flexible fediverse server",
190 background_image: "/images/city.jpg",
191 instance_thumbnail: "/instance/thumbnail.jpeg",
192 limit: 5_000,
193 description_limit: 5_000,
194 remote_limit: 100_000,
195 upload_limit: 16_000_000,
196 avatar_upload_limit: 2_000_000,
197 background_upload_limit: 4_000_000,
198 banner_upload_limit: 4_000_000,
199 poll_limits: %{
200 max_options: 20,
201 max_option_chars: 200,
202 min_expiration: 0,
203 max_expiration: 365 * 24 * 60 * 60
204 },
205 registrations_open: true,
206 invites_enabled: false,
207 account_activation_required: false,
208 account_approval_required: false,
209 federating: true,
210 federation_incoming_replies_max_depth: 100,
211 federation_reachability_timeout_days: 7,
212 federation_publisher_modules: [
213 Pleroma.Web.ActivityPub.Publisher
214 ],
215 allow_relay: true,
216 public: true,
217 quarantined_instances: [],
218 static_dir: "instance/static/",
219 allowed_post_formats: [
220 "text/plain",
221 "text/html",
222 "text/markdown",
223 "text/bbcode"
224 ],
225 autofollowed_nicknames: [],
226 autofollowing_nicknames: [],
227 max_pinned_statuses: 1,
228 attachment_links: false,
229 max_report_comment_size: 1000,
230 safe_dm_mentions: false,
231 healthcheck: false,
232 remote_post_retention_days: 90,
233 skip_thread_containment: true,
234 limit_to_local_content: :unauthenticated,
235 user_bio_length: 5000,
236 user_name_length: 100,
237 max_account_fields: 10,
238 max_remote_account_fields: 20,
239 account_field_name_length: 512,
240 account_field_value_length: 2048,
241 registration_reason_length: 500,
242 external_user_synchronization: true,
243 extended_nickname_format: true,
244 cleanup_attachments: false,
245 multi_factor_authentication: [
246 totp: [
247 # digits 6 or 8
248 digits: 6,
249 period: 30
250 ],
251 backup_codes: [
252 number: 5,
253 length: 16
254 ]
255 ],
256 show_reactions: true,
257 password_reset_token_validity: 60 * 60 * 24
258
259 config :pleroma, :welcome,
260 direct_message: [
261 enabled: false,
262 sender_nickname: nil,
263 message: nil
264 ],
265 chat_message: [
266 enabled: false,
267 sender_nickname: nil,
268 message: nil
269 ],
270 email: [
271 enabled: false,
272 sender: nil,
273 subject: "Welcome to <%= instance_name %>",
274 html: "Welcome to <%= instance_name %>",
275 text: "Welcome to <%= instance_name %>"
276 ]
277
278 config :pleroma, :feed,
279 post_title: %{
280 max_length: 100,
281 omission: "..."
282 }
283
284 config :pleroma, :markup,
285 # XXX - unfortunately, inline images must be enabled by default right now, because
286 # of custom emoji. Issue #275 discusses defanging that somehow.
287 allow_inline_images: true,
288 allow_headings: false,
289 allow_tables: false,
290 allow_fonts: false,
291 scrub_policy: [
292 Pleroma.HTML.Scrubber.Default,
293 Pleroma.HTML.Transform.MediaProxy
294 ]
295
296 config :pleroma, :frontend_configurations,
297 pleroma_fe: %{
298 alwaysShowSubjectInput: true,
299 background: "/images/city.jpg",
300 collapseMessageWithSubject: false,
301 disableChat: false,
302 greentext: false,
303 hideFilteredStatuses: false,
304 hideMutedPosts: false,
305 hidePostStats: false,
306 hideSitename: false,
307 hideUserStats: false,
308 loginMethod: "password",
309 logo: "/static/logo.svg",
310 logoMargin: ".1em",
311 logoMask: true,
312 minimalScopesMode: false,
313 noAttachmentLinks: false,
314 nsfwCensorImage: "",
315 postContentType: "text/plain",
316 redirectRootLogin: "/main/friends",
317 redirectRootNoLogin: "/main/all",
318 scopeCopy: true,
319 sidebarRight: false,
320 showFeaturesPanel: true,
321 showInstanceSpecificPanel: false,
322 subjectLineBehavior: "email",
323 theme: "pleroma-dark",
324 webPushNotifications: false
325 }
326
327 config :pleroma, :assets,
328 mascots: [
329 pleroma_fox_tan: %{
330 url: "/images/pleroma-fox-tan-smol.png",
331 mime_type: "image/png"
332 },
333 pleroma_fox_tan_shy: %{
334 url: "/images/pleroma-fox-tan-shy.png",
335 mime_type: "image/png"
336 }
337 ],
338 default_mascot: :pleroma_fox_tan
339
340 config :pleroma, :manifest,
341 icons: [
342 %{
343 src: "/static/logo.svg",
344 type: "image/svg+xml"
345 }
346 ],
347 theme_color: "#282c37",
348 background_color: "#191b22"
349
350 config :pleroma, :activitypub,
351 unfollow_blocked: true,
352 outgoing_blocks: true,
353 blockers_visible: true,
354 follow_handshake_timeout: 500,
355 note_replies_output_limit: 5,
356 sign_object_fetches: true,
357 authorized_fetch_mode: false
358
359 config :pleroma, :streamer,
360 workers: 3,
361 overflow_workers: 2
362
363 config :pleroma, :user, deny_follow_blocked: true
364
365 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
366
367 config :pleroma, :mrf_rejectnonpublic,
368 allow_followersonly: false,
369 allow_direct: false
370
371 config :pleroma, :mrf_hellthread,
372 delist_threshold: 10,
373 reject_threshold: 20
374
375 config :pleroma, :mrf_simple,
376 media_removal: [],
377 media_nsfw: [],
378 federated_timeline_removal: [],
379 report_removal: [],
380 reject: [],
381 followers_only: [],
382 accept: [],
383 avatar_removal: [],
384 banner_removal: [],
385 reject_deletes: []
386
387 config :pleroma, :mrf_keyword,
388 reject: [],
389 federated_timeline_removal: [],
390 replace: []
391
392 config :pleroma, :mrf_hashtag,
393 sensitive: ["nsfw"],
394 reject: [],
395 federated_timeline_removal: []
396
397 config :pleroma, :mrf_subchain, match_actor: %{}
398
399 config :pleroma, :mrf_activity_expiration, days: 365
400
401 config :pleroma, :mrf_vocabulary,
402 accept: [],
403 reject: []
404
405 # threshold of 7 days
406 config :pleroma, :mrf_object_age,
407 threshold: 604_800,
408 actions: [:delist, :strip_followers]
409
410 config :pleroma, :mrf_follow_bot, follower_nickname: nil
411
412 config :pleroma, :rich_media,
413 enabled: true,
414 ignore_hosts: [],
415 ignore_tld: ["local", "localdomain", "lan"],
416 parsers: [
417 Pleroma.Web.RichMedia.Parsers.TwitterCard,
418 Pleroma.Web.RichMedia.Parsers.OEmbed
419 ],
420 failure_backoff: 60_000,
421 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
422
423 config :pleroma, :media_proxy,
424 enabled: false,
425 invalidation: [
426 enabled: false,
427 provider: Pleroma.Web.MediaProxy.Invalidation.Script
428 ],
429 proxy_opts: [
430 redirect_on_failure: false,
431 max_body_length: 25 * 1_048_576,
432 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
433 max_read_duration: 30_000,
434 http: [
435 follow_redirect: true,
436 pool: :media
437 ]
438 ],
439 whitelist: []
440
441 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
442 method: :purge,
443 headers: [],
444 options: []
445
446 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script,
447 script_path: nil,
448 url_format: nil
449
450 # Note: media preview proxy depends on media proxy to be enabled
451 config :pleroma, :media_preview_proxy,
452 enabled: false,
453 thumbnail_max_width: 600,
454 thumbnail_max_height: 600,
455 image_quality: 85,
456 min_content_length: 100 * 1024
457
458 config :pleroma, :shout,
459 enabled: true,
460 limit: 5_000
461
462 config :phoenix, :format_encoders, json: Jason, "activity+json": Jason
463
464 config :phoenix, :json_library, Jason
465
466 config :phoenix, :filter_parameters, ["password", "confirm"]
467
468 config :pleroma, :gopher,
469 enabled: false,
470 ip: {0, 0, 0, 0},
471 port: 9999
472
473 config :pleroma, Pleroma.Web.Metadata,
474 providers: [
475 Pleroma.Web.Metadata.Providers.OpenGraph,
476 Pleroma.Web.Metadata.Providers.TwitterCard
477 ],
478 unfurl_nsfw: false
479
480 config :pleroma, Pleroma.Web.Preload,
481 providers: [
482 Pleroma.Web.Preload.Providers.Instance
483 ]
484
485 config :pleroma, :http_security,
486 enabled: true,
487 sts: false,
488 sts_max_age: 31_536_000,
489 ct_max_age: 2_592_000,
490 referrer_policy: "same-origin"
491
492 config :cors_plug,
493 max_age: 86_400,
494 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
495 expose: [
496 "Link",
497 "X-RateLimit-Reset",
498 "X-RateLimit-Limit",
499 "X-RateLimit-Remaining",
500 "X-Request-Id",
501 "Idempotency-Key"
502 ],
503 credentials: true,
504 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
505
506 config :pleroma, Pleroma.User,
507 restricted_nicknames: [
508 ".well-known",
509 "~",
510 "about",
511 "activities",
512 "api",
513 "auth",
514 "check_password",
515 "dev",
516 "friend-requests",
517 "inbox",
518 "internal",
519 "main",
520 "media",
521 "nodeinfo",
522 "notice",
523 "oauth",
524 "objects",
525 "ostatus_subscribe",
526 "pleroma",
527 "proxy",
528 "push",
529 "registration",
530 "relay",
531 "settings",
532 "status",
533 "tag",
534 "user-search",
535 "user_exists",
536 "users",
537 "web",
538 "verify_credentials",
539 "update_credentials",
540 "relationships",
541 "search",
542 "confirmation_resend",
543 "mfa"
544 ],
545 email_blacklist: []
546
547 config :pleroma, Oban,
548 repo: Pleroma.Repo,
549 log: false,
550 queues: [
551 activity_expiration: 10,
552 token_expiration: 5,
553 filter_expiration: 1,
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 poll_notifications: 10,
563 background: 5,
564 remote_fetcher: 2,
565 attachments_cleanup: 1,
566 new_users_digest: 1,
567 mute_expire: 5
568 ],
569 plugins: [Oban.Plugins.Pruner],
570 crontab: [
571 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
572 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
573 ]
574
575 config :pleroma, :workers,
576 retries: [
577 federator_incoming: 5,
578 federator_outgoing: 5
579 ]
580
581 config :pleroma, Pleroma.Formatter,
582 class: false,
583 rel: "ugc",
584 new_window: false,
585 truncate: false,
586 strip_prefix: false,
587 extra: true,
588 validate_tld: :no_scheme
589
590 config :pleroma, :ldap,
591 enabled: System.get_env("LDAP_ENABLED") == "true",
592 host: System.get_env("LDAP_HOST") || "localhost",
593 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
594 ssl: System.get_env("LDAP_SSL") == "true",
595 sslopts: [],
596 tls: System.get_env("LDAP_TLS") == "true",
597 tlsopts: [],
598 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
599 uid: System.get_env("LDAP_UID") || "cn"
600
601 config :esshd,
602 enabled: false
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://git.pleroma.social/pleroma/pleroma-fe",
729 "build_url" =>
730 "https://git.pleroma.social/pleroma/pleroma-fe/-/jobs/artifacts/${ref}/download?job=build",
731 "ref" => "develop"
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 # Import environment specific config. This must remain at the bottom
856 # of this file so it overrides the configuration defined above.
857 import_config "#{Mix.env()}.exs"