Federate data through persistent websocket connections
[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/fedsocket/v1", Pleroma.Web.FedSockets.IncomingHandler, []},
134 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
135 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
136 {Phoenix.Transports.WebSocket,
137 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
138 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
139 ]}
140 ]
141 ],
142 protocol: "https",
143 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
144 signing_salt: "CqaoopA2",
145 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
146 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
147 secure_cookie_flag: true,
148 extra_cookie_attrs: [
149 "SameSite=Lax"
150 ]
151
152 config :pleroma, :fed_sockets,
153 enabled: false,
154 connection_duration: :timer.hours(8),
155 rejection_duration: :timer.minutes(15),
156 fed_socket_fetches: [
157 default: 12_000,
158 interval: 3_000,
159 lazy: false
160 ]
161
162 # Configures Elixir's Logger
163 config :logger, :console,
164 level: :debug,
165 format: "\n$time $metadata[$level] $message\n",
166 metadata: [:request_id]
167
168 config :logger, :ex_syslogger,
169 level: :debug,
170 ident: "pleroma",
171 format: "$metadata[$level] $message",
172 metadata: [:request_id]
173
174 config :quack,
175 level: :warn,
176 meta: [:all],
177 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
178
179 config :mime, :types, %{
180 "application/xml" => ["xml"],
181 "application/xrd+xml" => ["xrd+xml"],
182 "application/jrd+json" => ["jrd+json"],
183 "application/activity+json" => ["activity+json"],
184 "application/ld+json" => ["activity+json"]
185 }
186
187 config :tesla, adapter: Tesla.Adapter.Hackney
188
189 # Configures http settings, upstream proxy etc.
190 config :pleroma, :http,
191 proxy_url: nil,
192 send_user_agent: true,
193 user_agent: :default,
194 adapter: []
195
196 config :pleroma, :instance,
197 name: "Pleroma",
198 email: "example@example.com",
199 notify_email: "noreply@example.com",
200 description: "Pleroma: An efficient and flexible fediverse server",
201 background_image: "/images/city.jpg",
202 instance_thumbnail: "/instance/thumbnail.jpeg",
203 limit: 5_000,
204 description_limit: 5_000,
205 chat_limit: 5_000,
206 remote_limit: 100_000,
207 upload_limit: 16_000_000,
208 avatar_upload_limit: 2_000_000,
209 background_upload_limit: 4_000_000,
210 banner_upload_limit: 4_000_000,
211 poll_limits: %{
212 max_options: 20,
213 max_option_chars: 200,
214 min_expiration: 0,
215 max_expiration: 365 * 24 * 60 * 60
216 },
217 registrations_open: true,
218 invites_enabled: false,
219 account_activation_required: false,
220 account_approval_required: false,
221 federating: true,
222 federation_incoming_replies_max_depth: 100,
223 federation_reachability_timeout_days: 7,
224 federation_publisher_modules: [
225 Pleroma.Web.ActivityPub.Publisher
226 ],
227 allow_relay: true,
228 public: true,
229 quarantined_instances: [],
230 static_dir: "instance/static/",
231 allowed_post_formats: [
232 "text/plain",
233 "text/html",
234 "text/markdown",
235 "text/bbcode"
236 ],
237 autofollowed_nicknames: [],
238 max_pinned_statuses: 1,
239 attachment_links: false,
240 max_report_comment_size: 1000,
241 safe_dm_mentions: false,
242 healthcheck: false,
243 remote_post_retention_days: 90,
244 skip_thread_containment: true,
245 limit_to_local_content: :unauthenticated,
246 user_bio_length: 5000,
247 user_name_length: 100,
248 max_account_fields: 10,
249 max_remote_account_fields: 20,
250 account_field_name_length: 512,
251 account_field_value_length: 2048,
252 registration_reason_length: 500,
253 external_user_synchronization: true,
254 extended_nickname_format: true,
255 cleanup_attachments: false,
256 multi_factor_authentication: [
257 totp: [
258 # digits 6 or 8
259 digits: 6,
260 period: 30
261 ],
262 backup_codes: [
263 number: 5,
264 length: 16
265 ]
266 ],
267 show_reactions: true
268
269 config :pleroma, :welcome,
270 direct_message: [
271 enabled: false,
272 sender_nickname: nil,
273 message: nil
274 ],
275 chat_message: [
276 enabled: false,
277 sender_nickname: nil,
278 message: nil
279 ],
280 email: [
281 enabled: false,
282 sender: nil,
283 subject: "Welcome to <%= instance_name %>",
284 html: "Welcome to <%= instance_name %>",
285 text: "Welcome to <%= instance_name %>"
286 ]
287
288 config :pleroma, :feed,
289 post_title: %{
290 max_length: 100,
291 omission: "..."
292 }
293
294 config :pleroma, :markup,
295 # XXX - unfortunately, inline images must be enabled by default right now, because
296 # of custom emoji. Issue #275 discusses defanging that somehow.
297 allow_inline_images: true,
298 allow_headings: false,
299 allow_tables: false,
300 allow_fonts: false,
301 scrub_policy: [
302 Pleroma.HTML.Scrubber.Default,
303 Pleroma.HTML.Transform.MediaProxy
304 ]
305
306 config :pleroma, :frontend_configurations,
307 pleroma_fe: %{
308 alwaysShowSubjectInput: true,
309 background: "/images/city.jpg",
310 collapseMessageWithSubject: false,
311 disableChat: false,
312 greentext: false,
313 hideFilteredStatuses: false,
314 hideMutedPosts: false,
315 hidePostStats: false,
316 hideSitename: false,
317 hideUserStats: false,
318 loginMethod: "password",
319 logo: "/static/logo.png",
320 logoMargin: ".1em",
321 logoMask: true,
322 minimalScopesMode: false,
323 noAttachmentLinks: false,
324 nsfwCensorImage: "",
325 postContentType: "text/plain",
326 redirectRootLogin: "/main/friends",
327 redirectRootNoLogin: "/main/all",
328 scopeCopy: true,
329 sidebarRight: false,
330 showFeaturesPanel: true,
331 showInstanceSpecificPanel: false,
332 subjectLineBehavior: "email",
333 theme: "pleroma-dark",
334 webPushNotifications: false
335 },
336 masto_fe: %{
337 showInstanceSpecificPanel: true
338 }
339
340 config :pleroma, :assets,
341 mascots: [
342 pleroma_fox_tan: %{
343 url: "/images/pleroma-fox-tan-smol.png",
344 mime_type: "image/png"
345 },
346 pleroma_fox_tan_shy: %{
347 url: "/images/pleroma-fox-tan-shy.png",
348 mime_type: "image/png"
349 }
350 ],
351 default_mascot: :pleroma_fox_tan
352
353 config :pleroma, :manifest,
354 icons: [
355 %{
356 src: "/static/logo.png",
357 type: "image/png"
358 }
359 ],
360 theme_color: "#282c37",
361 background_color: "#191b22"
362
363 config :pleroma, :activitypub,
364 unfollow_blocked: true,
365 outgoing_blocks: true,
366 follow_handshake_timeout: 500,
367 note_replies_output_limit: 5,
368 sign_object_fetches: true,
369 authorized_fetch_mode: false
370
371 config :pleroma, :streamer,
372 workers: 3,
373 overflow_workers: 2
374
375 config :pleroma, :user, deny_follow_blocked: true
376
377 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
378
379 config :pleroma, :mrf_rejectnonpublic,
380 allow_followersonly: false,
381 allow_direct: false
382
383 config :pleroma, :mrf_hellthread,
384 delist_threshold: 10,
385 reject_threshold: 20
386
387 config :pleroma, :mrf_simple,
388 media_removal: [],
389 media_nsfw: [],
390 federated_timeline_removal: [],
391 report_removal: [],
392 reject: [],
393 followers_only: [],
394 accept: [],
395 avatar_removal: [],
396 banner_removal: [],
397 reject_deletes: []
398
399 config :pleroma, :mrf_keyword,
400 reject: [],
401 federated_timeline_removal: [],
402 replace: []
403
404 config :pleroma, :mrf_subchain, match_actor: %{}
405
406 config :pleroma, :mrf_activity_expiration, days: 365
407
408 config :pleroma, :mrf_vocabulary,
409 accept: [],
410 reject: []
411
412 # threshold of 7 days
413 config :pleroma, :mrf_object_age,
414 threshold: 604_800,
415 actions: [:delist, :strip_followers]
416
417 config :pleroma, :rich_media,
418 enabled: true,
419 ignore_hosts: [],
420 ignore_tld: ["local", "localdomain", "lan"],
421 parsers: [
422 Pleroma.Web.RichMedia.Parsers.TwitterCard,
423 Pleroma.Web.RichMedia.Parsers.OEmbed
424 ],
425 failure_backoff: 60_000,
426 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
427
428 config :pleroma, :media_proxy,
429 enabled: false,
430 invalidation: [
431 enabled: false,
432 provider: Pleroma.Web.MediaProxy.Invalidation.Script
433 ],
434 proxy_opts: [
435 redirect_on_failure: false,
436 max_body_length: 25 * 1_048_576,
437 http: [
438 follow_redirect: true,
439 pool: :media
440 ]
441 ],
442 whitelist: []
443
444 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
445 method: :purge,
446 headers: [],
447 options: []
448
449 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script, script_path: nil
450
451 config :pleroma, :chat, enabled: true
452
453 config :phoenix, :format_encoders, json: Jason
454
455 config :phoenix, :json_library, Jason
456
457 config :phoenix, :filter_parameters, ["password", "confirm"]
458
459 config :pleroma, :gopher,
460 enabled: false,
461 ip: {0, 0, 0, 0},
462 port: 9999
463
464 config :pleroma, Pleroma.Web.Metadata,
465 providers: [
466 Pleroma.Web.Metadata.Providers.OpenGraph,
467 Pleroma.Web.Metadata.Providers.TwitterCard
468 ],
469 unfurl_nsfw: false
470
471 config :pleroma, Pleroma.Web.Preload,
472 providers: [
473 Pleroma.Web.Preload.Providers.Instance
474 ]
475
476 config :pleroma, :http_security,
477 enabled: true,
478 sts: false,
479 sts_max_age: 31_536_000,
480 ct_max_age: 2_592_000,
481 referrer_policy: "same-origin"
482
483 config :cors_plug,
484 max_age: 86_400,
485 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
486 expose: [
487 "Link",
488 "X-RateLimit-Reset",
489 "X-RateLimit-Limit",
490 "X-RateLimit-Remaining",
491 "X-Request-Id",
492 "Idempotency-Key"
493 ],
494 credentials: true,
495 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
496
497 config :pleroma, Pleroma.User,
498 restricted_nicknames: [
499 ".well-known",
500 "~",
501 "about",
502 "activities",
503 "api",
504 "auth",
505 "check_password",
506 "dev",
507 "friend-requests",
508 "inbox",
509 "internal",
510 "main",
511 "media",
512 "nodeinfo",
513 "notice",
514 "oauth",
515 "objects",
516 "ostatus_subscribe",
517 "pleroma",
518 "proxy",
519 "push",
520 "registration",
521 "relay",
522 "settings",
523 "status",
524 "tag",
525 "user-search",
526 "user_exists",
527 "users",
528 "web",
529 "verify_credentials",
530 "update_credentials",
531 "relationships",
532 "search",
533 "confirmation_resend",
534 "mfa"
535 ],
536 email_blacklist: []
537
538 config :pleroma, Oban,
539 repo: Pleroma.Repo,
540 log: false,
541 queues: [
542 activity_expiration: 10,
543 token_expiration: 5,
544 federator_incoming: 50,
545 federator_outgoing: 50,
546 ingestion_queue: 50,
547 web_push: 50,
548 mailer: 10,
549 transmogrifier: 20,
550 scheduled_activities: 10,
551 background: 5,
552 remote_fetcher: 2,
553 attachments_cleanup: 5,
554 new_users_digest: 1
555 ],
556 plugins: [Oban.Plugins.Pruner],
557 crontab: [
558 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
559 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
560 ]
561
562 config :pleroma, :workers,
563 retries: [
564 federator_incoming: 5,
565 federator_outgoing: 5
566 ]
567
568 config :pleroma, Pleroma.Formatter,
569 class: false,
570 rel: "ugc",
571 new_window: false,
572 truncate: false,
573 strip_prefix: false,
574 extra: true,
575 validate_tld: :no_scheme
576
577 config :pleroma, :ldap,
578 enabled: System.get_env("LDAP_ENABLED") == "true",
579 host: System.get_env("LDAP_HOST") || "localhost",
580 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
581 ssl: System.get_env("LDAP_SSL") == "true",
582 sslopts: [],
583 tls: System.get_env("LDAP_TLS") == "true",
584 tlsopts: [],
585 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
586 uid: System.get_env("LDAP_UID") || "cn"
587
588 config :esshd,
589 enabled: false
590
591 oauth_consumer_strategies =
592 System.get_env("OAUTH_CONSUMER_STRATEGIES")
593 |> to_string()
594 |> String.split()
595 |> Enum.map(&hd(String.split(&1, ":")))
596
597 ueberauth_providers =
598 for strategy <- oauth_consumer_strategies do
599 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
600 strategy_module = String.to_atom(strategy_module_name)
601 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
602 end
603
604 config :ueberauth,
605 Ueberauth,
606 base_path: "/oauth",
607 providers: ueberauth_providers
608
609 config :pleroma,
610 :auth,
611 enforce_oauth_admin_scope_usage: true,
612 oauth_consumer_strategies: oauth_consumer_strategies
613
614 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
615
616 config :pleroma, Pleroma.Emails.UserEmail,
617 logo: nil,
618 styling: %{
619 link_color: "#d8a070",
620 background_color: "#2C3645",
621 content_background_color: "#1B2635",
622 header_color: "#d8a070",
623 text_color: "#b9b9ba",
624 text_muted_color: "#b9b9ba"
625 }
626
627 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
628
629 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
630
631 config :pleroma, Pleroma.ScheduledActivity,
632 daily_user_limit: 25,
633 total_user_limit: 300,
634 enabled: true
635
636 config :pleroma, :email_notifications,
637 digest: %{
638 active: false,
639 interval: 7,
640 inactivity_threshold: 7
641 }
642
643 config :pleroma, :oauth2,
644 token_expires_in: 600,
645 issue_new_refresh_token: true,
646 clean_expired_tokens: false
647
648 config :pleroma, :database, rum_enabled: false
649
650 config :pleroma, :env, Mix.env()
651
652 config :http_signatures,
653 adapter: Pleroma.Signature
654
655 config :pleroma, :rate_limit,
656 authentication: {60_000, 15},
657 timeline: {500, 3},
658 search: [{1000, 10}, {1000, 30}],
659 app_account_creation: {1_800_000, 25},
660 relations_actions: {10_000, 10},
661 relation_id_action: {60_000, 2},
662 statuses_actions: {10_000, 15},
663 status_id_action: {60_000, 3},
664 password_reset: {1_800_000, 5},
665 account_confirmation_resend: {8_640_000, 5},
666 ap_routes: {60_000, 15}
667
668 config :pleroma, Pleroma.Workers.PurgeExpiredActivity, enabled: true, min_lifetime: 600
669
670 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
671
672 config :pleroma, :static_fe, enabled: false
673
674 # Example of frontend configuration
675 # This example will make us serve the primary frontend from the
676 # frontends directory within your `:pleroma, :instance, static_dir`.
677 # e.g., instance/static/frontends/pleroma/develop/
678 #
679 # With no frontend configuration, the bundled files from the `static` directory will
680 # be used.
681 #
682 # config :pleroma, :frontends,
683 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
684 # admin: %{"name" => "admin-fe", "ref" => "stable"},
685 # available: %{...}
686
687 config :pleroma, :frontends,
688 available: %{
689 "kenoma" => %{
690 "name" => "kenoma",
691 "git" => "https://git.pleroma.social/lambadalambda/kenoma",
692 "build_url" =>
693 "https://git.pleroma.social/lambadalambda/kenoma/-/jobs/artifacts/${ref}/download?job=build",
694 "ref" => "master"
695 },
696 "pleroma-fe" => %{
697 "name" => "pleroma-fe",
698 "git" => "https://git.pleroma.social/pleroma/pleroma-fe",
699 "build_url" =>
700 "https://git.pleroma.social/pleroma/pleroma-fe/-/jobs/artifacts/${ref}/download?job=build",
701 "ref" => "develop"
702 },
703 "fedi-fe" => %{
704 "name" => "fedi-fe",
705 "git" => "https://git.pleroma.social/pleroma/fedi-fe",
706 "build_url" =>
707 "https://git.pleroma.social/pleroma/fedi-fe/-/jobs/artifacts/${ref}/download?job=build",
708 "ref" => "master"
709 },
710 "admin-fe" => %{
711 "name" => "admin-fe",
712 "git" => "https://git.pleroma.social/pleroma/admin-fe",
713 "build_url" =>
714 "https://git.pleroma.social/pleroma/admin-fe/-/jobs/artifacts/${ref}/download?job=build",
715 "ref" => "develop"
716 },
717 "soapbox-fe" => %{
718 "name" => "soapbox-fe",
719 "git" => "https://gitlab.com/soapbox-pub/soapbox-fe",
720 "build_url" =>
721 "https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/${ref}/download?job=build-production",
722 "ref" => "v1.0.0",
723 "build_dir" => "static"
724 }
725 }
726
727 config :pleroma, :web_cache_ttl,
728 activity_pub: nil,
729 activity_pub_question: 30_000
730
731 config :pleroma, :modules, runtime_dir: "instance/modules"
732
733 config :pleroma, configurable_from_database: false
734
735 config :pleroma, Pleroma.Repo,
736 parameters: [gin_fuzzy_search_limit: "500"],
737 prepare: :unnamed
738
739 config :pleroma, :connections_pool,
740 reclaim_multiplier: 0.1,
741 connection_acquisition_wait: 250,
742 connection_acquisition_retries: 5,
743 max_connections: 250,
744 max_idle_time: 30_000,
745 retry: 0,
746 connect_timeout: 5_000
747
748 config :pleroma, :pools,
749 federation: [
750 size: 50,
751 max_waiting: 10,
752 recv_timeout: 10_000
753 ],
754 media: [
755 size: 50,
756 max_waiting: 10,
757 recv_timeout: 10_000
758 ],
759 upload: [
760 size: 25,
761 max_waiting: 5,
762 recv_timeout: 15_000
763 ],
764 default: [
765 size: 10,
766 max_waiting: 2,
767 recv_timeout: 5_000
768 ]
769
770 config :pleroma, :hackney_pools,
771 federation: [
772 max_connections: 50,
773 timeout: 150_000
774 ],
775 media: [
776 max_connections: 50,
777 timeout: 150_000
778 ],
779 upload: [
780 max_connections: 25,
781 timeout: 300_000
782 ]
783
784 private_instance? = :if_instance_is_private
785
786 config :pleroma, :restrict_unauthenticated,
787 timelines: %{local: private_instance?, federated: private_instance?},
788 profiles: %{local: private_instance?, remote: private_instance?},
789 activities: %{local: private_instance?, remote: private_instance?}
790
791 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
792
793 config :pleroma, :mrf,
794 policies: Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy,
795 transparency: true,
796 transparency_exclusions: []
797
798 config :tzdata, :http_client, Pleroma.HTTP.Tzdata
799
800 config :ex_aws, http_client: Pleroma.HTTP.ExAws
801
802 config :pleroma, :instances_favicons, enabled: false
803
804 config :floki, :html_parser, Floki.HTMLParser.FastHtml
805
806 config :pleroma, Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator
807
808 # Import environment specific config. This must remain at the bottom
809 # of this file so it overrides the configuration defined above.
810 import_config "#{Mix.env()}.exs"