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