Merge remote-tracking branch 'remotes/origin/develop' into media-preview-proxy-nostream
[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 static_dir: "instance/static/",
220 allowed_post_formats: [
221 "text/plain",
222 "text/html",
223 "text/markdown",
224 "text/bbcode"
225 ],
226 autofollowed_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
258 config :pleroma, :welcome,
259 direct_message: [
260 enabled: false,
261 sender_nickname: nil,
262 message: nil
263 ],
264 chat_message: [
265 enabled: false,
266 sender_nickname: nil,
267 message: nil
268 ],
269 email: [
270 enabled: false,
271 sender: nil,
272 subject: "Welcome to <%= instance_name %>",
273 html: "Welcome to <%= instance_name %>",
274 text: "Welcome to <%= instance_name %>"
275 ]
276
277 config :pleroma, :feed,
278 post_title: %{
279 max_length: 100,
280 omission: "..."
281 }
282
283 config :pleroma, :markup,
284 # XXX - unfortunately, inline images must be enabled by default right now, because
285 # of custom emoji. Issue #275 discusses defanging that somehow.
286 allow_inline_images: true,
287 allow_headings: false,
288 allow_tables: false,
289 allow_fonts: false,
290 scrub_policy: [
291 Pleroma.HTML.Scrubber.Default,
292 Pleroma.HTML.Transform.MediaProxy
293 ]
294
295 config :pleroma, :frontend_configurations,
296 pleroma_fe: %{
297 alwaysShowSubjectInput: true,
298 background: "/images/city.jpg",
299 collapseMessageWithSubject: false,
300 disableChat: false,
301 greentext: false,
302 hideFilteredStatuses: false,
303 hideMutedPosts: false,
304 hidePostStats: false,
305 hideSitename: false,
306 hideUserStats: false,
307 loginMethod: "password",
308 logo: "/static/logo.png",
309 logoMargin: ".1em",
310 logoMask: true,
311 minimalScopesMode: false,
312 noAttachmentLinks: false,
313 nsfwCensorImage: "",
314 postContentType: "text/plain",
315 redirectRootLogin: "/main/friends",
316 redirectRootNoLogin: "/main/all",
317 scopeCopy: true,
318 sidebarRight: false,
319 showFeaturesPanel: true,
320 showInstanceSpecificPanel: false,
321 subjectLineBehavior: "email",
322 theme: "pleroma-dark",
323 webPushNotifications: false
324 },
325 masto_fe: %{
326 showInstanceSpecificPanel: true
327 }
328
329 config :pleroma, :assets,
330 mascots: [
331 pleroma_fox_tan: %{
332 url: "/images/pleroma-fox-tan-smol.png",
333 mime_type: "image/png"
334 },
335 pleroma_fox_tan_shy: %{
336 url: "/images/pleroma-fox-tan-shy.png",
337 mime_type: "image/png"
338 }
339 ],
340 default_mascot: :pleroma_fox_tan
341
342 config :pleroma, :manifest,
343 icons: [
344 %{
345 src: "/static/logo.png",
346 type: "image/png"
347 }
348 ],
349 theme_color: "#282c37",
350 background_color: "#191b22"
351
352 config :pleroma, :activitypub,
353 unfollow_blocked: true,
354 outgoing_blocks: true,
355 follow_handshake_timeout: 500,
356 note_replies_output_limit: 5,
357 sign_object_fetches: true,
358 authorized_fetch_mode: false
359
360 config :pleroma, :streamer,
361 workers: 3,
362 overflow_workers: 2
363
364 config :pleroma, :user, deny_follow_blocked: true
365
366 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
367
368 config :pleroma, :mrf_rejectnonpublic,
369 allow_followersonly: false,
370 allow_direct: false
371
372 config :pleroma, :mrf_hellthread,
373 delist_threshold: 10,
374 reject_threshold: 20
375
376 config :pleroma, :mrf_simple,
377 media_removal: [],
378 media_nsfw: [],
379 federated_timeline_removal: [],
380 report_removal: [],
381 reject: [],
382 followers_only: [],
383 accept: [],
384 avatar_removal: [],
385 banner_removal: [],
386 reject_deletes: []
387
388 config :pleroma, :mrf_keyword,
389 reject: [],
390 federated_timeline_removal: [],
391 replace: []
392
393 config :pleroma, :mrf_subchain, match_actor: %{}
394
395 config :pleroma, :mrf_activity_expiration, days: 365
396
397 config :pleroma, :mrf_vocabulary,
398 accept: [],
399 reject: []
400
401 # threshold of 7 days
402 config :pleroma, :mrf_object_age,
403 threshold: 604_800,
404 actions: [:delist, :strip_followers]
405
406 config :pleroma, :rich_media,
407 enabled: true,
408 ignore_hosts: [],
409 ignore_tld: ["local", "localdomain", "lan"],
410 parsers: [
411 Pleroma.Web.RichMedia.Parsers.TwitterCard,
412 Pleroma.Web.RichMedia.Parsers.OEmbed
413 ],
414 failure_backoff: 60_000,
415 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
416
417 config :pleroma, :media_proxy,
418 enabled: false,
419 invalidation: [
420 enabled: false,
421 provider: Pleroma.Web.MediaProxy.Invalidation.Script
422 ],
423 proxy_opts: [
424 redirect_on_failure: false,
425 max_body_length: 25 * 1_048_576,
426 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
427 max_read_duration: 30_000,
428 http: [
429 follow_redirect: true,
430 pool: :media
431 ]
432 ],
433 whitelist: []
434
435 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
436 method: :purge,
437 headers: [],
438 options: []
439
440 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script, script_path: nil
441
442 # Note: media preview proxy depends on media proxy to be enabled
443 config :pleroma, :media_preview_proxy,
444 enabled: false,
445 thumbnail_max_width: 600,
446 thumbnail_max_height: 600,
447 image_quality: 85
448
449 config :pleroma, :chat, enabled: true
450
451 config :phoenix, :format_encoders, json: Jason
452
453 config :phoenix, :json_library, Jason
454
455 config :phoenix, :filter_parameters, ["password", "confirm"]
456
457 config :pleroma, :gopher,
458 enabled: false,
459 ip: {0, 0, 0, 0},
460 port: 9999
461
462 config :pleroma, Pleroma.Web.Metadata,
463 providers: [
464 Pleroma.Web.Metadata.Providers.OpenGraph,
465 Pleroma.Web.Metadata.Providers.TwitterCard
466 ],
467 unfurl_nsfw: false
468
469 config :pleroma, Pleroma.Web.Preload,
470 providers: [
471 Pleroma.Web.Preload.Providers.Instance
472 ]
473
474 config :pleroma, :http_security,
475 enabled: true,
476 sts: false,
477 sts_max_age: 31_536_000,
478 ct_max_age: 2_592_000,
479 referrer_policy: "same-origin"
480
481 config :cors_plug,
482 max_age: 86_400,
483 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
484 expose: [
485 "Link",
486 "X-RateLimit-Reset",
487 "X-RateLimit-Limit",
488 "X-RateLimit-Remaining",
489 "X-Request-Id",
490 "Idempotency-Key"
491 ],
492 credentials: true,
493 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
494
495 config :pleroma, Pleroma.User,
496 restricted_nicknames: [
497 ".well-known",
498 "~",
499 "about",
500 "activities",
501 "api",
502 "auth",
503 "check_password",
504 "dev",
505 "friend-requests",
506 "inbox",
507 "internal",
508 "main",
509 "media",
510 "nodeinfo",
511 "notice",
512 "oauth",
513 "objects",
514 "ostatus_subscribe",
515 "pleroma",
516 "proxy",
517 "push",
518 "registration",
519 "relay",
520 "settings",
521 "status",
522 "tag",
523 "user-search",
524 "user_exists",
525 "users",
526 "web",
527 "verify_credentials",
528 "update_credentials",
529 "relationships",
530 "search",
531 "confirmation_resend",
532 "mfa"
533 ],
534 email_blacklist: []
535
536 config :pleroma, Oban,
537 repo: Pleroma.Repo,
538 log: false,
539 queues: [
540 activity_expiration: 10,
541 token_expiration: 5,
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 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
556 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
557 ]
558
559 config :pleroma, :workers,
560 retries: [
561 federator_incoming: 5,
562 federator_outgoing: 5
563 ]
564
565 config :pleroma, Pleroma.Formatter,
566 class: false,
567 rel: "ugc",
568 new_window: false,
569 truncate: false,
570 strip_prefix: false,
571 extra: true,
572 validate_tld: :no_scheme
573
574 config :pleroma, :ldap,
575 enabled: System.get_env("LDAP_ENABLED") == "true",
576 host: System.get_env("LDAP_HOST") || "localhost",
577 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
578 ssl: System.get_env("LDAP_SSL") == "true",
579 sslopts: [],
580 tls: System.get_env("LDAP_TLS") == "true",
581 tlsopts: [],
582 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
583 uid: System.get_env("LDAP_UID") || "cn"
584
585 config :esshd,
586 enabled: false
587
588 oauth_consumer_strategies =
589 System.get_env("OAUTH_CONSUMER_STRATEGIES")
590 |> to_string()
591 |> String.split()
592 |> Enum.map(&hd(String.split(&1, ":")))
593
594 ueberauth_providers =
595 for strategy <- oauth_consumer_strategies do
596 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
597 strategy_module = String.to_atom(strategy_module_name)
598 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
599 end
600
601 config :ueberauth,
602 Ueberauth,
603 base_path: "/oauth",
604 providers: ueberauth_providers
605
606 config :pleroma,
607 :auth,
608 enforce_oauth_admin_scope_usage: true,
609 oauth_consumer_strategies: oauth_consumer_strategies
610
611 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
612
613 config :pleroma, Pleroma.Emails.UserEmail,
614 logo: nil,
615 styling: %{
616 link_color: "#d8a070",
617 background_color: "#2C3645",
618 content_background_color: "#1B2635",
619 header_color: "#d8a070",
620 text_color: "#b9b9ba",
621 text_muted_color: "#b9b9ba"
622 }
623
624 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
625
626 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
627
628 config :pleroma, Pleroma.ScheduledActivity,
629 daily_user_limit: 25,
630 total_user_limit: 300,
631 enabled: true
632
633 config :pleroma, :email_notifications,
634 digest: %{
635 active: false,
636 interval: 7,
637 inactivity_threshold: 7
638 }
639
640 config :pleroma, :oauth2,
641 token_expires_in: 600,
642 issue_new_refresh_token: true,
643 clean_expired_tokens: false
644
645 config :pleroma, :database, rum_enabled: false
646
647 config :pleroma, :env, Mix.env()
648
649 config :http_signatures,
650 adapter: Pleroma.Signature
651
652 config :pleroma, :rate_limit,
653 authentication: {60_000, 15},
654 timeline: {500, 3},
655 search: [{1000, 10}, {1000, 30}],
656 app_account_creation: {1_800_000, 25},
657 relations_actions: {10_000, 10},
658 relation_id_action: {60_000, 2},
659 statuses_actions: {10_000, 15},
660 status_id_action: {60_000, 3},
661 password_reset: {1_800_000, 5},
662 account_confirmation_resend: {8_640_000, 5},
663 ap_routes: {60_000, 15}
664
665 config :pleroma, Pleroma.Workers.PurgeExpiredActivity, enabled: true, min_lifetime: 600
666
667 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
668
669 config :pleroma, :static_fe, enabled: false
670
671 # Example of frontend configuration
672 # This example will make us serve the primary frontend from the
673 # frontends directory within your `:pleroma, :instance, static_dir`.
674 # e.g., instance/static/frontends/pleroma/develop/
675 #
676 # With no frontend configuration, the bundled files from the `static` directory will
677 # be used.
678 #
679 # config :pleroma, :frontends,
680 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
681 # admin: %{"name" => "admin-fe", "ref" => "stable"},
682 # available: %{...}
683
684 config :pleroma, :frontends,
685 available: %{
686 "kenoma" => %{
687 "name" => "kenoma",
688 "git" => "https://git.pleroma.social/lambadalambda/kenoma",
689 "build_url" =>
690 "https://git.pleroma.social/lambadalambda/kenoma/-/jobs/artifacts/${ref}/download?job=build",
691 "ref" => "master"
692 },
693 "pleroma-fe" => %{
694 "name" => "pleroma-fe",
695 "git" => "https://git.pleroma.social/pleroma/pleroma-fe",
696 "build_url" =>
697 "https://git.pleroma.social/pleroma/pleroma-fe/-/jobs/artifacts/${ref}/download?job=build",
698 "ref" => "develop"
699 },
700 "fedi-fe" => %{
701 "name" => "fedi-fe",
702 "git" => "https://git.pleroma.social/pleroma/fedi-fe",
703 "build_url" =>
704 "https://git.pleroma.social/pleroma/fedi-fe/-/jobs/artifacts/${ref}/download?job=build",
705 "ref" => "master"
706 },
707 "admin-fe" => %{
708 "name" => "admin-fe",
709 "git" => "https://git.pleroma.social/pleroma/admin-fe",
710 "build_url" =>
711 "https://git.pleroma.social/pleroma/admin-fe/-/jobs/artifacts/${ref}/download?job=build",
712 "ref" => "develop"
713 },
714 "soapbox-fe" => %{
715 "name" => "soapbox-fe",
716 "git" => "https://gitlab.com/soapbox-pub/soapbox-fe",
717 "build_url" =>
718 "https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/${ref}/download?job=build-production",
719 "ref" => "v1.0.0",
720 "build_dir" => "static"
721 }
722 }
723
724 config :pleroma, :web_cache_ttl,
725 activity_pub: nil,
726 activity_pub_question: 30_000
727
728 config :pleroma, :modules, runtime_dir: "instance/modules"
729
730 config :pleroma, configurable_from_database: false
731
732 config :pleroma, Pleroma.Repo,
733 parameters: [gin_fuzzy_search_limit: "500"],
734 prepare: :unnamed
735
736 config :pleroma, :connections_pool,
737 reclaim_multiplier: 0.1,
738 connection_acquisition_wait: 250,
739 connection_acquisition_retries: 5,
740 max_connections: 250,
741 max_idle_time: 30_000,
742 retry: 0,
743 connect_timeout: 5_000
744
745 config :pleroma, :pools,
746 federation: [
747 size: 50,
748 max_waiting: 10,
749 recv_timeout: 10_000
750 ],
751 media: [
752 size: 50,
753 max_waiting: 20,
754 recv_timeout: 15_000
755 ],
756 upload: [
757 size: 25,
758 max_waiting: 5,
759 recv_timeout: 15_000
760 ],
761 default: [
762 size: 10,
763 max_waiting: 2,
764 recv_timeout: 5_000
765 ]
766
767 config :pleroma, :hackney_pools,
768 federation: [
769 max_connections: 50,
770 timeout: 150_000
771 ],
772 media: [
773 max_connections: 50,
774 timeout: 150_000
775 ],
776 upload: [
777 max_connections: 25,
778 timeout: 300_000
779 ]
780
781 private_instance? = :if_instance_is_private
782
783 config :pleroma, :restrict_unauthenticated,
784 timelines: %{local: private_instance?, federated: private_instance?},
785 profiles: %{local: private_instance?, remote: private_instance?},
786 activities: %{local: private_instance?, remote: private_instance?}
787
788 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
789
790 config :pleroma, :mrf,
791 policies: Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy,
792 transparency: true,
793 transparency_exclusions: []
794
795 config :tzdata, :http_client, Pleroma.HTTP.Tzdata
796
797 config :ex_aws, http_client: Pleroma.HTTP.ExAws
798
799 config :pleroma, :instances_favicons, enabled: false
800
801 config :floki, :html_parser, Floki.HTMLParser.FastHtml
802
803 config :pleroma, Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator
804
805 # Import environment specific config. This must remain at the bottom
806 # of this file so it overrides the configuration defined above.
807 import_config "#{Mix.env()}.exs"