Merge branch 'fix/remove_auto_nsfw' 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 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 signing_salt: "CqaoopA2",
143 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
144 pubsub_server: Pleroma.PubSub,
145 secure_cookie_flag: true,
146 extra_cookie_attrs: [
147 "SameSite=Lax"
148 ]
149
150 # Configures Elixir's Logger
151 config :logger, :console,
152 level: :debug,
153 format: "\n$time $metadata[$level] $message\n",
154 metadata: [:request_id]
155
156 config :logger, :ex_syslogger,
157 level: :debug,
158 ident: "pleroma",
159 format: "$metadata[$level] $message",
160 metadata: [:request_id]
161
162 config :quack,
163 level: :warn,
164 meta: [:all],
165 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
166
167 config :mime, :types, %{
168 "application/xml" => ["xml"],
169 "application/xrd+xml" => ["xrd+xml"],
170 "application/jrd+json" => ["jrd+json"],
171 "application/activity+json" => ["activity+json"],
172 "application/ld+json" => ["activity+json"]
173 }
174
175 config :tesla, adapter: Tesla.Adapter.Hackney
176
177 # Configures http settings, upstream proxy etc.
178 config :pleroma, :http,
179 proxy_url: nil,
180 send_user_agent: true,
181 user_agent: :default,
182 adapter: []
183
184 config :pleroma, :instance,
185 name: "Pleroma",
186 email: "example@example.com",
187 notify_email: "noreply@example.com",
188 description: "Pleroma: An efficient and flexible fediverse server",
189 background_image: "/images/city.jpg",
190 instance_thumbnail: "/instance/thumbnail.jpeg",
191 limit: 5_000,
192 description_limit: 5_000,
193 chat_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 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.svg",
347 type: "image/svg+xml"
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_hashtag,
395 sensitive: ["nsfw"],
396 reject: [],
397 federated_timeline_removal: []
398
399 config :pleroma, :mrf_subchain, match_actor: %{}
400
401 config :pleroma, :mrf_activity_expiration, days: 365
402
403 config :pleroma, :mrf_vocabulary,
404 accept: [],
405 reject: []
406
407 # threshold of 7 days
408 config :pleroma, :mrf_object_age,
409 threshold: 604_800,
410 actions: [:delist, :strip_followers]
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, :chat, enabled: true
459
460 config :phoenix, :format_encoders, json: Jason
461
462 config :phoenix, :json_library, Jason
463
464 config :phoenix, :filter_parameters, ["password", "confirm"]
465
466 config :pleroma, :gopher,
467 enabled: false,
468 ip: {0, 0, 0, 0},
469 port: 9999
470
471 config :pleroma, Pleroma.Web.Metadata,
472 providers: [
473 Pleroma.Web.Metadata.Providers.OpenGraph,
474 Pleroma.Web.Metadata.Providers.TwitterCard
475 ],
476 unfurl_nsfw: false
477
478 config :pleroma, Pleroma.Web.Preload,
479 providers: [
480 Pleroma.Web.Preload.Providers.Instance
481 ]
482
483 config :pleroma, :http_security,
484 enabled: true,
485 sts: false,
486 sts_max_age: 31_536_000,
487 ct_max_age: 2_592_000,
488 referrer_policy: "same-origin"
489
490 config :cors_plug,
491 max_age: 86_400,
492 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
493 expose: [
494 "Link",
495 "X-RateLimit-Reset",
496 "X-RateLimit-Limit",
497 "X-RateLimit-Remaining",
498 "X-Request-Id",
499 "Idempotency-Key"
500 ],
501 credentials: true,
502 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
503
504 config :pleroma, Pleroma.User,
505 restricted_nicknames: [
506 ".well-known",
507 "~",
508 "about",
509 "activities",
510 "api",
511 "auth",
512 "check_password",
513 "dev",
514 "friend-requests",
515 "inbox",
516 "internal",
517 "main",
518 "media",
519 "nodeinfo",
520 "notice",
521 "oauth",
522 "objects",
523 "ostatus_subscribe",
524 "pleroma",
525 "proxy",
526 "push",
527 "registration",
528 "relay",
529 "settings",
530 "status",
531 "tag",
532 "user-search",
533 "user_exists",
534 "users",
535 "web",
536 "verify_credentials",
537 "update_credentials",
538 "relationships",
539 "search",
540 "confirmation_resend",
541 "mfa"
542 ],
543 email_blacklist: []
544
545 config :pleroma, Oban,
546 repo: Pleroma.Repo,
547 log: false,
548 queues: [
549 activity_expiration: 10,
550 token_expiration: 5,
551 filter_expiration: 1,
552 backup: 1,
553 federator_incoming: 50,
554 federator_outgoing: 50,
555 ingestion_queue: 50,
556 web_push: 50,
557 mailer: 10,
558 transmogrifier: 20,
559 scheduled_activities: 10,
560 background: 5,
561 remote_fetcher: 2,
562 attachments_cleanup: 1,
563 new_users_digest: 1,
564 mute_expire: 5
565 ],
566 plugins: [Oban.Plugins.Pruner],
567 crontab: [
568 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
569 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
570 ]
571
572 config :pleroma, :workers,
573 retries: [
574 federator_incoming: 5,
575 federator_outgoing: 5
576 ]
577
578 config :pleroma, Pleroma.Formatter,
579 class: false,
580 rel: "ugc",
581 new_window: false,
582 truncate: false,
583 strip_prefix: false,
584 extra: true,
585 validate_tld: :no_scheme
586
587 config :pleroma, :ldap,
588 enabled: System.get_env("LDAP_ENABLED") == "true",
589 host: System.get_env("LDAP_HOST") || "localhost",
590 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
591 ssl: System.get_env("LDAP_SSL") == "true",
592 sslopts: [],
593 tls: System.get_env("LDAP_TLS") == "true",
594 tlsopts: [],
595 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
596 uid: System.get_env("LDAP_UID") || "cn"
597
598 config :esshd,
599 enabled: false
600
601 oauth_consumer_strategies =
602 System.get_env("OAUTH_CONSUMER_STRATEGIES")
603 |> to_string()
604 |> String.split()
605 |> Enum.map(&hd(String.split(&1, ":")))
606
607 ueberauth_providers =
608 for strategy <- oauth_consumer_strategies do
609 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
610 strategy_module = String.to_atom(strategy_module_name)
611 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
612 end
613
614 config :ueberauth,
615 Ueberauth,
616 base_path: "/oauth",
617 providers: ueberauth_providers
618
619 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
620
621 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
622
623 config :pleroma, Pleroma.Emails.UserEmail,
624 logo: nil,
625 styling: %{
626 link_color: "#d8a070",
627 background_color: "#2C3645",
628 content_background_color: "#1B2635",
629 header_color: "#d8a070",
630 text_color: "#b9b9ba",
631 text_muted_color: "#b9b9ba"
632 }
633
634 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
635
636 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter,
637 enabled: false,
638 auth: false,
639 ip_whitelist: [],
640 path: "/api/pleroma/app_metrics",
641 format: :text
642
643 config :pleroma, Pleroma.ScheduledActivity,
644 daily_user_limit: 25,
645 total_user_limit: 300,
646 enabled: true
647
648 config :pleroma, :email_notifications,
649 digest: %{
650 active: false,
651 interval: 7,
652 inactivity_threshold: 7
653 }
654
655 config :pleroma, :oauth2,
656 token_expires_in: 3600 * 24 * 365 * 100,
657 issue_new_refresh_token: true,
658 clean_expired_tokens: false
659
660 config :pleroma, :database, rum_enabled: false
661
662 config :pleroma, :features, improved_hashtag_timeline: :auto
663
664 config :pleroma, :populate_hashtags_table, fault_rate_allowance: 0.01
665
666 config :pleroma, :env, Mix.env()
667
668 config :http_signatures,
669 adapter: Pleroma.Signature
670
671 config :pleroma, :rate_limit,
672 authentication: {60_000, 15},
673 timeline: {500, 3},
674 search: [{1000, 10}, {1000, 30}],
675 app_account_creation: {1_800_000, 25},
676 relations_actions: {10_000, 10},
677 relation_id_action: {60_000, 2},
678 statuses_actions: {10_000, 15},
679 status_id_action: {60_000, 3},
680 password_reset: {1_800_000, 5},
681 account_confirmation_resend: {8_640_000, 5},
682 ap_routes: {60_000, 15}
683
684 config :pleroma, Pleroma.Workers.PurgeExpiredActivity, enabled: true, min_lifetime: 600
685
686 config :pleroma, Pleroma.Web.Plugs.RemoteIp,
687 enabled: true,
688 headers: ["x-forwarded-for"],
689 proxies: [],
690 reserved: [
691 "127.0.0.0/8",
692 "::1/128",
693 "fc00::/7",
694 "10.0.0.0/8",
695 "172.16.0.0/12",
696 "192.168.0.0/16"
697 ]
698
699 config :pleroma, :static_fe, enabled: false
700
701 # Example of frontend configuration
702 # This example will make us serve the primary frontend from the
703 # frontends directory within your `:pleroma, :instance, static_dir`.
704 # e.g., instance/static/frontends/pleroma/develop/
705 #
706 # With no frontend configuration, the bundled files from the `static` directory will
707 # be used.
708 #
709 # config :pleroma, :frontends,
710 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
711 # admin: %{"name" => "admin-fe", "ref" => "stable"},
712 # available: %{...}
713
714 config :pleroma, :frontends,
715 available: %{
716 "kenoma" => %{
717 "name" => "kenoma",
718 "git" => "https://git.pleroma.social/lambadalambda/kenoma",
719 "build_url" =>
720 "https://git.pleroma.social/lambadalambda/kenoma/-/jobs/artifacts/${ref}/download?job=build",
721 "ref" => "master"
722 },
723 "pleroma-fe" => %{
724 "name" => "pleroma-fe",
725 "git" => "https://git.pleroma.social/pleroma/pleroma-fe",
726 "build_url" =>
727 "https://git.pleroma.social/pleroma/pleroma-fe/-/jobs/artifacts/${ref}/download?job=build",
728 "ref" => "develop"
729 },
730 "fedi-fe" => %{
731 "name" => "fedi-fe",
732 "git" => "https://git.pleroma.social/pleroma/fedi-fe",
733 "build_url" =>
734 "https://git.pleroma.social/pleroma/fedi-fe/-/jobs/artifacts/${ref}/download?job=build",
735 "ref" => "master",
736 "custom-http-headers" => [
737 {"service-worker-allowed", "/"}
738 ]
739 },
740 "admin-fe" => %{
741 "name" => "admin-fe",
742 "git" => "https://git.pleroma.social/pleroma/admin-fe",
743 "build_url" =>
744 "https://git.pleroma.social/pleroma/admin-fe/-/jobs/artifacts/${ref}/download?job=build",
745 "ref" => "develop"
746 },
747 "soapbox-fe" => %{
748 "name" => "soapbox-fe",
749 "git" => "https://gitlab.com/soapbox-pub/soapbox-fe",
750 "build_url" =>
751 "https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/${ref}/download?job=build-production",
752 "ref" => "v1.0.0",
753 "build_dir" => "static"
754 }
755 }
756
757 config :pleroma, :web_cache_ttl,
758 activity_pub: nil,
759 activity_pub_question: 30_000
760
761 config :pleroma, :modules, runtime_dir: "instance/modules"
762
763 config :pleroma, configurable_from_database: false
764
765 config :pleroma, Pleroma.Repo,
766 parameters: [gin_fuzzy_search_limit: "500"],
767 prepare: :unnamed
768
769 config :pleroma, :connections_pool,
770 reclaim_multiplier: 0.1,
771 connection_acquisition_wait: 250,
772 connection_acquisition_retries: 5,
773 max_connections: 250,
774 max_idle_time: 30_000,
775 retry: 0,
776 connect_timeout: 5_000
777
778 config :pleroma, :pools,
779 federation: [
780 size: 50,
781 max_waiting: 10,
782 recv_timeout: 10_000
783 ],
784 media: [
785 size: 50,
786 max_waiting: 20,
787 recv_timeout: 15_000
788 ],
789 upload: [
790 size: 25,
791 max_waiting: 5,
792 recv_timeout: 15_000
793 ],
794 default: [
795 size: 10,
796 max_waiting: 2,
797 recv_timeout: 5_000
798 ]
799
800 config :pleroma, :hackney_pools,
801 federation: [
802 max_connections: 50,
803 timeout: 150_000
804 ],
805 media: [
806 max_connections: 50,
807 timeout: 150_000
808 ],
809 upload: [
810 max_connections: 25,
811 timeout: 300_000
812 ]
813
814 config :pleroma, :majic_pool, size: 2
815
816 private_instance? = :if_instance_is_private
817
818 config :pleroma, :restrict_unauthenticated,
819 timelines: %{local: private_instance?, federated: private_instance?},
820 profiles: %{local: private_instance?, remote: private_instance?},
821 activities: %{local: private_instance?, remote: private_instance?}
822
823 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
824
825 config :pleroma, :mrf,
826 policies: [Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy, Pleroma.Web.ActivityPub.MRF.TagPolicy],
827 transparency: true,
828 transparency_exclusions: []
829
830 config :tzdata, :http_client, Pleroma.HTTP.Tzdata
831
832 config :ex_aws, http_client: Pleroma.HTTP.ExAws
833
834 config :web_push_encryption, http_client: Pleroma.HTTP.WebPush
835
836 config :pleroma, :instances_favicons, enabled: false
837
838 config :floki, :html_parser, Floki.HTMLParser.FastHtml
839
840 config :pleroma, Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator
841
842 config :pleroma, Pleroma.User.Backup,
843 purge_after_days: 30,
844 limit_days: 7,
845 dir: nil
846
847 config :pleroma, ConcurrentLimiter, [
848 {Pleroma.Web.RichMedia.Helpers, [max_running: 5, max_waiting: 5]},
849 {Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy, [max_running: 5, max_waiting: 5]}
850 ]
851
852 # Import environment specific config. This must remain at the bottom
853 # of this file so it overrides the configuration defined above.
854 import_config "#{Mix.env()}.exs"