Merge branch 'develop' into media-preview-proxy
[akkoma] / config / config.exs
1 # .i;;;;i.
2 # iYcviii;vXY:
3 # .YXi .i1c.
4 # .YC. . in7.
5 # .vc. ...... ;1c.
6 # i7, .. .;1;
7 # i7, .. ... .Y1i
8 # ,7v .6MMM@; .YX,
9 # .7;. ..IMMMMMM1 :t7.
10 # .;Y. ;$MMMMMM9. :tc.
11 # vY. .. .nMMM@MMU. ;1v.
12 # i7i ... .#MM@M@C. .....:71i
13 # it: .... $MMM@9;.,i;;;i,;tti
14 # :t7. ..... 0MMMWv.,iii:::,,;St.
15 # .nC. ..... IMMMQ..,::::::,.,czX.
16 # .ct: ....... .ZMMMI..,:::::::,,:76Y.
17 # c2: ......,i..Y$M@t..:::::::,,..inZY
18 # vov ......:ii..c$MBc..,,,,,,,,,,..iI9i
19 # i9Y ......iii:..7@MA,..,,,,,,,,,....;AA:
20 # iIS. ......:ii::..;@MI....,............;Ez.
21 # .I9. ......:i::::...8M1..................C0z.
22 # .z9; ......:i::::,.. .i:...................zWX.
23 # vbv ......,i::::,,. ................. :AQY
24 # c6Y. .,...,::::,,..:t0@@QY. ................ :8bi
25 # :6S. ..,,...,:::,,,..EMMMMMMI. ............... .;bZ,
26 # :6o, .,,,,..:::,,,..i#MMMMMM#v................. YW2.
27 # .n8i ..,,,,,,,::,,,,.. tMMMMM@C:.................. .1Wn
28 # 7Uc. .:::,,,,,::,,,,.. i1t;,..................... .UEi
29 # 7C...::::::::::::,,,,.. .................... vSi.
30 # ;1;...,,::::::,......... .................. Yz:
31 # v97,......... .voC.
32 # izAotX7777777777777777777777777777777777777777Y7n92:
33 # .;CoIIIIIUAA666666699999ZZZZZZZZZZZZZZZZZZZZ6ov.
34 #
35 # !!! ATTENTION !!!
36 # DO NOT EDIT THIS FILE! THIS FILE CONTAINS THE DEFAULT VALUES FOR THE CON-
37 # FIGURATION! EDIT YOUR SECRET FILE (either prod.secret.exs, dev.secret.exs).
38 #
39 # This file is responsible for configuring your application
40 # and its dependencies with the aid of the Mix.Config module.
41 #
42 # This configuration file is loaded before any dependency and
43 # is restricted to this project.
44 use Mix.Config
45
46 # General application configuration
47 config :pleroma, ecto_repos: [Pleroma.Repo]
48
49 config :pleroma, Pleroma.Repo,
50 types: Pleroma.PostgresTypes,
51 telemetry_event: [Pleroma.Repo.Instrumenter],
52 migration_lock: nil
53
54 config :pleroma, Pleroma.Captcha,
55 enabled: true,
56 seconds_valid: 300,
57 method: Pleroma.Captcha.Native
58
59 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
60
61 # Upload configuration
62 config :pleroma, Pleroma.Upload,
63 uploader: Pleroma.Uploaders.Local,
64 filters: [Pleroma.Upload.Filter.Dedupe],
65 link_name: false,
66 proxy_remote: false,
67 proxy_opts: [
68 redirect_on_failure: false,
69 max_body_length: 25 * 1_048_576,
70 http: [
71 follow_redirect: true,
72 pool: :upload
73 ]
74 ],
75 filename_display_max_length: 30,
76 default_description: nil
77
78 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
79
80 config :pleroma, Pleroma.Uploaders.S3,
81 bucket: nil,
82 streaming_enabled: true,
83 public_endpoint: "https://s3.amazonaws.com"
84
85 config :pleroma, :emoji,
86 shortcode_globs: ["/emoji/custom/**/*.png"],
87 pack_extensions: [".png", ".gif"],
88 groups: [
89 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
90 ],
91 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
92 shared_pack_cache_seconds_per_file: 60
93
94 config :pleroma, :uri_schemes,
95 valid_schemes: [
96 "https",
97 "http",
98 "dat",
99 "dweb",
100 "gopher",
101 "hyper",
102 "ipfs",
103 "ipns",
104 "irc",
105 "ircs",
106 "magnet",
107 "mailto",
108 "mumble",
109 "ssb",
110 "xmpp"
111 ]
112
113 websocket_config = [
114 path: "/websocket",
115 serializer: [
116 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
117 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
118 ],
119 timeout: 60_000,
120 transport_log: false,
121 compress: false
122 ]
123
124 # Configures the endpoint
125 config :pleroma, Pleroma.Web.Endpoint,
126 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
127 url: [host: "localhost"],
128 http: [
129 ip: {127, 0, 0, 1},
130 dispatch: [
131 {:_,
132 [
133 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
134 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
135 {Phoenix.Transports.WebSocket,
136 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
137 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
138 ]}
139 ]
140 ],
141 protocol: "https",
142 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
143 signing_salt: "CqaoopA2",
144 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
145 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
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 chat_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 managed_config: true,
220 static_dir: "instance/static/",
221 allowed_post_formats: [
222 "text/plain",
223 "text/html",
224 "text/markdown",
225 "text/bbcode"
226 ],
227 autofollowed_nicknames: [],
228 max_pinned_statuses: 1,
229 attachment_links: false,
230 max_report_comment_size: 1000,
231 safe_dm_mentions: false,
232 healthcheck: false,
233 remote_post_retention_days: 90,
234 skip_thread_containment: true,
235 limit_to_local_content: :unauthenticated,
236 user_bio_length: 5000,
237 user_name_length: 100,
238 max_account_fields: 10,
239 max_remote_account_fields: 20,
240 account_field_name_length: 512,
241 account_field_value_length: 2048,
242 registration_reason_length: 500,
243 external_user_synchronization: true,
244 extended_nickname_format: true,
245 cleanup_attachments: false,
246 multi_factor_authentication: [
247 totp: [
248 # digits 6 or 8
249 digits: 6,
250 period: 30
251 ],
252 backup_codes: [
253 number: 5,
254 length: 16
255 ]
256 ],
257 show_reactions: true
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.png",
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 masto_fe: %{
327 showInstanceSpecificPanel: true
328 }
329
330 config :pleroma, :assets,
331 mascots: [
332 pleroma_fox_tan: %{
333 url: "/images/pleroma-fox-tan-smol.png",
334 mime_type: "image/png"
335 },
336 pleroma_fox_tan_shy: %{
337 url: "/images/pleroma-fox-tan-shy.png",
338 mime_type: "image/png"
339 }
340 ],
341 default_mascot: :pleroma_fox_tan
342
343 config :pleroma, :manifest,
344 icons: [
345 %{
346 src: "/static/logo.png",
347 type: "image/png"
348 }
349 ],
350 theme_color: "#282c37",
351 background_color: "#191b22"
352
353 config :pleroma, :activitypub,
354 unfollow_blocked: true,
355 outgoing_blocks: true,
356 follow_handshake_timeout: 500,
357 note_replies_output_limit: 5,
358 sign_object_fetches: true,
359 authorized_fetch_mode: false
360
361 config :pleroma, :streamer,
362 workers: 3,
363 overflow_workers: 2
364
365 config :pleroma, :user, deny_follow_blocked: true
366
367 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
368
369 config :pleroma, :mrf_rejectnonpublic,
370 allow_followersonly: false,
371 allow_direct: false
372
373 config :pleroma, :mrf_hellthread,
374 delist_threshold: 10,
375 reject_threshold: 20
376
377 config :pleroma, :mrf_simple,
378 media_removal: [],
379 media_nsfw: [],
380 federated_timeline_removal: [],
381 report_removal: [],
382 reject: [],
383 followers_only: [],
384 accept: [],
385 avatar_removal: [],
386 banner_removal: [],
387 reject_deletes: []
388
389 config :pleroma, :mrf_keyword,
390 reject: [],
391 federated_timeline_removal: [],
392 replace: []
393
394 config :pleroma, :mrf_subchain, match_actor: %{}
395
396 config :pleroma, :mrf_activity_expiration, days: 365
397
398 config :pleroma, :mrf_vocabulary,
399 accept: [],
400 reject: []
401
402 # threshold of 7 days
403 config :pleroma, :mrf_object_age,
404 threshold: 604_800,
405 actions: [:delist, :strip_followers]
406
407 config :pleroma, :rich_media,
408 enabled: true,
409 ignore_hosts: [],
410 ignore_tld: ["local", "localdomain", "lan"],
411 parsers: [
412 Pleroma.Web.RichMedia.Parsers.TwitterCard,
413 Pleroma.Web.RichMedia.Parsers.OEmbed
414 ],
415 failure_backoff: 60_000,
416 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
417
418 config :pleroma, :media_proxy,
419 enabled: false,
420 invalidation: [
421 enabled: false,
422 provider: Pleroma.Web.MediaProxy.Invalidation.Script
423 ],
424 proxy_opts: [
425 redirect_on_failure: false,
426 max_body_length: 25 * 1_048_576,
427 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
428 max_read_duration: 30_000,
429 http: [
430 follow_redirect: true,
431 pool: :media
432 ]
433 ],
434 whitelist: []
435
436 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
437 method: :purge,
438 headers: [],
439 options: []
440
441 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script, script_path: nil
442
443 # Note: media preview proxy depends on media proxy to be enabled
444 config :pleroma, :media_preview_proxy,
445 enabled: false,
446 thumbnail_max_width: 600,
447 thumbnail_max_height: 600,
448 image_quality: 85
449
450 config :pleroma, :chat, enabled: true
451
452 config :phoenix, :format_encoders, json: Jason
453
454 config :phoenix, :json_library, Jason
455
456 config :phoenix, :filter_parameters, ["password", "confirm"]
457
458 config :pleroma, :gopher,
459 enabled: false,
460 ip: {0, 0, 0, 0},
461 port: 9999
462
463 config :pleroma, Pleroma.Web.Metadata,
464 providers: [
465 Pleroma.Web.Metadata.Providers.OpenGraph,
466 Pleroma.Web.Metadata.Providers.TwitterCard
467 ],
468 unfurl_nsfw: false
469
470 config :pleroma, Pleroma.Web.Preload,
471 providers: [
472 Pleroma.Web.Preload.Providers.Instance
473 ]
474
475 config :pleroma, :http_security,
476 enabled: true,
477 sts: false,
478 sts_max_age: 31_536_000,
479 ct_max_age: 2_592_000,
480 referrer_policy: "same-origin"
481
482 config :cors_plug,
483 max_age: 86_400,
484 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
485 expose: [
486 "Link",
487 "X-RateLimit-Reset",
488 "X-RateLimit-Limit",
489 "X-RateLimit-Remaining",
490 "X-Request-Id",
491 "Idempotency-Key"
492 ],
493 credentials: true,
494 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
495
496 config :pleroma, Pleroma.User,
497 restricted_nicknames: [
498 ".well-known",
499 "~",
500 "about",
501 "activities",
502 "api",
503 "auth",
504 "check_password",
505 "dev",
506 "friend-requests",
507 "inbox",
508 "internal",
509 "main",
510 "media",
511 "nodeinfo",
512 "notice",
513 "oauth",
514 "objects",
515 "ostatus_subscribe",
516 "pleroma",
517 "proxy",
518 "push",
519 "registration",
520 "relay",
521 "settings",
522 "status",
523 "tag",
524 "user-search",
525 "user_exists",
526 "users",
527 "web",
528 "verify_credentials",
529 "update_credentials",
530 "relationships",
531 "search",
532 "confirmation_resend",
533 "mfa"
534 ],
535 email_blacklist: []
536
537 config :pleroma, Oban,
538 repo: Pleroma.Repo,
539 log: false,
540 queues: [
541 activity_expiration: 10,
542 federator_incoming: 50,
543 federator_outgoing: 50,
544 web_push: 50,
545 mailer: 10,
546 transmogrifier: 20,
547 scheduled_activities: 10,
548 background: 5,
549 remote_fetcher: 2,
550 attachments_cleanup: 5,
551 new_users_digest: 1
552 ],
553 plugins: [Oban.Plugins.Pruner],
554 crontab: [
555 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
556 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
557 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
558 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
559 ]
560
561 config :pleroma, :workers,
562 retries: [
563 federator_incoming: 5,
564 federator_outgoing: 5
565 ]
566
567 config :pleroma, Pleroma.Formatter,
568 class: false,
569 rel: "ugc",
570 new_window: false,
571 truncate: false,
572 strip_prefix: false,
573 extra: true,
574 validate_tld: :no_scheme
575
576 config :pleroma, :ldap,
577 enabled: System.get_env("LDAP_ENABLED") == "true",
578 host: System.get_env("LDAP_HOST") || "localhost",
579 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
580 ssl: System.get_env("LDAP_SSL") == "true",
581 sslopts: [],
582 tls: System.get_env("LDAP_TLS") == "true",
583 tlsopts: [],
584 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
585 uid: System.get_env("LDAP_UID") || "cn"
586
587 config :esshd,
588 enabled: false
589
590 oauth_consumer_strategies =
591 System.get_env("OAUTH_CONSUMER_STRATEGIES")
592 |> to_string()
593 |> String.split()
594 |> Enum.map(&hd(String.split(&1, ":")))
595
596 ueberauth_providers =
597 for strategy <- oauth_consumer_strategies do
598 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
599 strategy_module = String.to_atom(strategy_module_name)
600 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
601 end
602
603 config :ueberauth,
604 Ueberauth,
605 base_path: "/oauth",
606 providers: ueberauth_providers
607
608 config :pleroma,
609 :auth,
610 enforce_oauth_admin_scope_usage: true,
611 oauth_consumer_strategies: oauth_consumer_strategies
612
613 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
614
615 config :pleroma, Pleroma.Emails.UserEmail,
616 logo: nil,
617 styling: %{
618 link_color: "#d8a070",
619 background_color: "#2C3645",
620 content_background_color: "#1B2635",
621 header_color: "#d8a070",
622 text_color: "#b9b9ba",
623 text_muted_color: "#b9b9ba"
624 }
625
626 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
627
628 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
629
630 config :pleroma, Pleroma.ScheduledActivity,
631 daily_user_limit: 25,
632 total_user_limit: 300,
633 enabled: true
634
635 config :pleroma, :email_notifications,
636 digest: %{
637 active: false,
638 interval: 7,
639 inactivity_threshold: 7
640 }
641
642 config :pleroma, :oauth2,
643 token_expires_in: 600,
644 issue_new_refresh_token: true,
645 clean_expired_tokens: false
646
647 config :pleroma, :database, rum_enabled: false
648
649 config :pleroma, :env, Mix.env()
650
651 config :http_signatures,
652 adapter: Pleroma.Signature
653
654 config :pleroma, :rate_limit,
655 authentication: {60_000, 15},
656 timeline: {500, 3},
657 search: [{1000, 10}, {1000, 30}],
658 app_account_creation: {1_800_000, 25},
659 relations_actions: {10_000, 10},
660 relation_id_action: {60_000, 2},
661 statuses_actions: {10_000, 15},
662 status_id_action: {60_000, 3},
663 password_reset: {1_800_000, 5},
664 account_confirmation_resend: {8_640_000, 5},
665 ap_routes: {60_000, 15}
666
667 config :pleroma, Pleroma.ActivityExpiration, enabled: true
668
669 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
670
671 config :pleroma, :static_fe, enabled: false
672
673 # Example of frontend configuration
674 # This example will make us serve the primary frontend from the
675 # frontends directory within your `:pleroma, :instance, static_dir`.
676 # e.g., instance/static/frontends/pleroma/develop/
677 #
678 # With no frontend configuration, the bundled files from the `static` directory will
679 # be used.
680 #
681 # config :pleroma, :frontends,
682 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
683 # admin: %{"name" => "admin-fe", "ref" => "stable"},
684 # available: %{...}
685
686 config :pleroma, :frontends,
687 available: %{
688 "kenoma" => %{
689 "name" => "kenoma",
690 "git" => "https://git.pleroma.social/lambadalambda/kenoma",
691 "build_url" =>
692 "https://git.pleroma.social/lambadalambda/kenoma/-/jobs/artifacts/${ref}/download?job=build",
693 "ref" => "master"
694 },
695 "pleroma-fe" => %{
696 "name" => "pleroma-fe",
697 "git" => "https://git.pleroma.social/pleroma/pleroma-fe",
698 "build_url" =>
699 "https://git.pleroma.social/pleroma/pleroma-fe/-/jobs/artifacts/${ref}/download?job=build",
700 "ref" => "develop"
701 },
702 "fedi-fe" => %{
703 "name" => "fedi-fe",
704 "git" => "https://git.pleroma.social/pleroma/fedi-fe",
705 "build_url" =>
706 "https://git.pleroma.social/pleroma/fedi-fe/-/jobs/artifacts/${ref}/download?job=build",
707 "ref" => "master"
708 },
709 "admin-fe" => %{
710 "name" => "admin-fe",
711 "git" => "https://git.pleroma.social/pleroma/admin-fe",
712 "build_url" =>
713 "https://git.pleroma.social/pleroma/admin-fe/-/jobs/artifacts/${ref}/download?job=build",
714 "ref" => "develop"
715 },
716 "soapbox-fe" => %{
717 "name" => "soapbox-fe",
718 "git" => "https://gitlab.com/soapbox-pub/soapbox-fe",
719 "build_url" =>
720 "https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/${ref}/download?job=build-production",
721 "ref" => "v1.0.0",
722 "build_dir" => "static"
723 }
724 }
725
726 config :pleroma, :web_cache_ttl,
727 activity_pub: nil,
728 activity_pub_question: 30_000
729
730 config :pleroma, :modules, runtime_dir: "instance/modules"
731
732 config :pleroma, configurable_from_database: false
733
734 config :pleroma, Pleroma.Repo,
735 parameters: [gin_fuzzy_search_limit: "500"],
736 prepare: :unnamed
737
738 config :pleroma, :connections_pool,
739 reclaim_multiplier: 0.1,
740 connection_acquisition_wait: 250,
741 connection_acquisition_retries: 5,
742 max_connections: 250,
743 max_idle_time: 30_000,
744 retry: 0,
745 connect_timeout: 5_000
746
747 config :pleroma, :pools,
748 federation: [
749 size: 50,
750 max_waiting: 10,
751 recv_timeout: 10_000
752 ],
753 media: [
754 size: 50,
755 max_waiting: 20,
756 recv_timeout: 15_000
757 ],
758 upload: [
759 size: 25,
760 max_waiting: 5,
761 recv_timeout: 15_000
762 ],
763 default: [
764 size: 10,
765 max_waiting: 2,
766 recv_timeout: 5_000
767 ]
768
769 config :pleroma, :hackney_pools,
770 federation: [
771 max_connections: 50,
772 timeout: 150_000
773 ],
774 media: [
775 max_connections: 50,
776 timeout: 150_000
777 ],
778 upload: [
779 max_connections: 25,
780 timeout: 300_000
781 ]
782
783 private_instance? = :if_instance_is_private
784
785 config :pleroma, :restrict_unauthenticated,
786 timelines: %{local: private_instance?, federated: private_instance?},
787 profiles: %{local: private_instance?, remote: private_instance?},
788 activities: %{local: private_instance?, remote: private_instance?}
789
790 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
791
792 config :pleroma, :mrf,
793 policies: Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy,
794 transparency: true,
795 transparency_exclusions: []
796
797 config :tzdata, :http_client, Pleroma.HTTP.Tzdata
798
799 config :ex_aws, http_client: Pleroma.HTTP.ExAws
800
801 config :pleroma, :instances_favicons, enabled: false
802
803 config :floki, :html_parser, Floki.HTMLParser.FastHtml
804
805 config :pleroma, Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator
806
807 # Import environment specific config. This must remain at the bottom
808 # of this file so it overrides the configuration defined above.
809 import_config "#{Mix.env()}.exs"