purge chat and shout endpoints
[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 import 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 live_view: [signing_salt: "U5ELgdEwTD3n1+D5s0rY0AMg8/y1STxZ3Zvsl3bWh+oBcGrYdil0rXqPMRd3Glcq"],
143 signing_salt: "CqaoopA2",
144 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
145 pubsub_server: Pleroma.PubSub,
146 secure_cookie_flag: true,
147 extra_cookie_attrs: [
148 "SameSite=Lax"
149 ]
150
151 # Configures Elixir's Logger
152 config :logger, truncate: 65_536
153
154 config :logger, :console,
155 level: :info,
156 format: "\n$time $metadata[$level] $message\n",
157 metadata: [:request_id]
158
159 config :logger, :ex_syslogger,
160 level: :info,
161 ident: "pleroma",
162 format: "$metadata[$level] $message",
163 metadata: [:request_id]
164
165 config :quack,
166 level: :warn,
167 meta: [:all],
168 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
169
170 config :mime, :types, %{
171 "application/xml" => ["xml"],
172 "application/xrd+xml" => ["xrd+xml"],
173 "application/jrd+json" => ["jrd+json"],
174 "application/activity+json" => ["activity+json"],
175 "application/ld+json" => ["activity+json"]
176 }
177
178 config :tesla, :adapter, {Tesla.Adapter.Finch, name: MyFinch}
179
180 # Configures http settings, upstream proxy etc.
181 config :pleroma, :http,
182 proxy_url: nil,
183 user_agent: :default,
184 adapter: []
185
186 config :pleroma, :instance,
187 name: "Pleroma",
188 email: "example@example.com",
189 notify_email: "noreply@example.com",
190 description: "Akkoma: The cooler fediverse server",
191 background_image: "/images/city.jpg",
192 instance_thumbnail: "/instance/thumbnail.jpeg",
193 limit: 5_000,
194 description_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 "text/x.misskeymarkdown"
226 ],
227 staff_transparency: [],
228 autofollowed_nicknames: [],
229 autofollowing_nicknames: [],
230 max_pinned_statuses: 1,
231 attachment_links: false,
232 max_report_comment_size: 1000,
233 safe_dm_mentions: false,
234 healthcheck: false,
235 remote_post_retention_days: 90,
236 skip_thread_containment: true,
237 limit_to_local_content: :unauthenticated,
238 user_bio_length: 5000,
239 user_name_length: 100,
240 max_account_fields: 10,
241 max_remote_account_fields: 20,
242 account_field_name_length: 512,
243 account_field_value_length: 2048,
244 registration_reason_length: 500,
245 external_user_synchronization: true,
246 extended_nickname_format: true,
247 cleanup_attachments: false,
248 multi_factor_authentication: [
249 totp: [
250 # digits 6 or 8
251 digits: 6,
252 period: 30
253 ],
254 backup_codes: [
255 number: 5,
256 length: 16
257 ]
258 ],
259 show_reactions: true,
260 password_reset_token_validity: 60 * 60 * 24,
261 profile_directory: true,
262 privileged_staff: false
263
264 config :pleroma, :welcome,
265 direct_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 blockers_visible: true,
357 follow_handshake_timeout: 500,
358 note_replies_output_limit: 5,
359 sign_object_fetches: true,
360 authorized_fetch_mode: false,
361 max_collection_objects: 50
362
363 config :pleroma, :streamer,
364 workers: 3,
365 overflow_workers: 2
366
367 config :pleroma, :user, deny_follow_blocked: true
368
369 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
370
371 config :pleroma, :mrf_rejectnonpublic,
372 allow_followersonly: false,
373 allow_direct: false
374
375 config :pleroma, :mrf_hellthread,
376 delist_threshold: 10,
377 reject_threshold: 20
378
379 config :pleroma, :mrf_simple,
380 media_removal: [],
381 media_nsfw: [],
382 federated_timeline_removal: [],
383 report_removal: [],
384 reject: [],
385 followers_only: [],
386 accept: [],
387 avatar_removal: [],
388 banner_removal: [],
389 reject_deletes: []
390
391 config :pleroma, :mrf_keyword,
392 reject: [],
393 federated_timeline_removal: [],
394 replace: []
395
396 config :pleroma, :mrf_hashtag,
397 sensitive: ["nsfw"],
398 reject: [],
399 federated_timeline_removal: []
400
401 config :pleroma, :mrf_subchain, match_actor: %{}
402
403 config :pleroma, :mrf_activity_expiration, days: 365
404
405 config :pleroma, :mrf_vocabulary,
406 accept: [],
407 reject: []
408
409 # threshold of 7 days
410 config :pleroma, :mrf_object_age,
411 threshold: 604_800,
412 actions: [:delist, :strip_followers]
413
414 config :pleroma, :mrf_follow_bot, follower_nickname: nil
415
416 config :pleroma, :rich_media,
417 enabled: true,
418 ignore_hosts: [],
419 ignore_tld: ["local", "localdomain", "lan"],
420 parsers: [
421 Pleroma.Web.RichMedia.Parsers.TwitterCard,
422 Pleroma.Web.RichMedia.Parsers.OEmbed
423 ],
424 failure_backoff: 60_000,
425 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
426
427 config :pleroma, :media_proxy,
428 enabled: false,
429 invalidation: [
430 enabled: false,
431 provider: Pleroma.Web.MediaProxy.Invalidation.Script
432 ],
433 proxy_opts: [
434 redirect_on_failure: false,
435 max_body_length: 25 * 1_048_576,
436 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
437 max_read_duration: 30_000
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, :shout,
459 enabled: true,
460 limit: 5_000
461
462 config :phoenix, :format_encoders, json: Jason, "activity+json": Jason
463
464 config :phoenix, :json_library, Jason
465
466 config :phoenix, :filter_parameters, ["password", "confirm"]
467
468 config :pleroma, Pleroma.Web.Metadata,
469 providers: [
470 Pleroma.Web.Metadata.Providers.OpenGraph,
471 Pleroma.Web.Metadata.Providers.TwitterCard
472 ],
473 unfurl_nsfw: false
474
475 config :pleroma, Pleroma.Web.Metadata.Providers.Theme, theme_color: "#593196"
476
477 config :pleroma, Pleroma.Web.Preload,
478 providers: [
479 Pleroma.Web.Preload.Providers.Instance
480 ]
481
482 config :pleroma, :http_security,
483 enabled: true,
484 sts: false,
485 sts_max_age: 31_536_000,
486 ct_max_age: 2_592_000,
487 referrer_policy: "same-origin"
488
489 config :cors_plug,
490 max_age: 86_400,
491 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
492 expose: [
493 "Link",
494 "X-RateLimit-Reset",
495 "X-RateLimit-Limit",
496 "X-RateLimit-Remaining",
497 "X-Request-Id",
498 "Idempotency-Key"
499 ],
500 credentials: true,
501 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
502
503 config :pleroma, Pleroma.User,
504 restricted_nicknames: [
505 ".well-known",
506 "~",
507 "about",
508 "activities",
509 "akkoma",
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 poll_notifications: 10,
561 background: 5,
562 remote_fetcher: 2,
563 attachments_cleanup: 1,
564 new_users_digest: 1,
565 mute_expire: 5,
566 search_indexing: 10
567 ],
568 plugins: [Oban.Plugins.Pruner],
569 crontab: [
570 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
571 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
572 ]
573
574 config :pleroma, :workers,
575 retries: [
576 federator_incoming: 5,
577 federator_outgoing: 5,
578 search_indexing: 2
579 ]
580
581 config :pleroma, Pleroma.Formatter,
582 class: false,
583 rel: "ugc",
584 new_window: false,
585 truncate: false,
586 strip_prefix: false,
587 extra: true,
588 validate_tld: :no_scheme
589
590 oauth_consumer_strategies =
591 "OAUTH_CONSUMER_STRATEGIES"
592 |> System.get_env()
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, :auth, 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,
627 enabled: false,
628 auth: false,
629 ip_whitelist: [],
630 path: "/api/pleroma/app_metrics",
631 format: :text
632
633 config :pleroma, Pleroma.ScheduledActivity,
634 daily_user_limit: 25,
635 total_user_limit: 300,
636 enabled: true
637
638 config :pleroma, :email_notifications,
639 digest: %{
640 active: false,
641 interval: 7,
642 inactivity_threshold: 7
643 }
644
645 config :pleroma, :oauth2,
646 token_expires_in: 3600 * 24 * 365 * 100,
647 issue_new_refresh_token: true,
648 clean_expired_tokens: false
649
650 config :pleroma, :database, rum_enabled: false
651
652 config :pleroma, :features, improved_hashtag_timeline: :auto
653
654 config :pleroma, :populate_hashtags_table, fault_rate_allowance: 0.01
655
656 config :pleroma, :env, Mix.env()
657
658 config :http_signatures,
659 adapter: Pleroma.Signature
660
661 config :pleroma, :rate_limit,
662 authentication: {60_000, 15},
663 timeline: {500, 3},
664 search: [{1000, 10}, {1000, 30}],
665 app_account_creation: {1_800_000, 25},
666 relations_actions: {10_000, 10},
667 relation_id_action: {60_000, 2},
668 statuses_actions: {10_000, 15},
669 status_id_action: {60_000, 3},
670 password_reset: {1_800_000, 5},
671 account_confirmation_resend: {8_640_000, 5},
672 ap_routes: {60_000, 15}
673
674 config :pleroma, Pleroma.Workers.PurgeExpiredActivity, enabled: true, min_lifetime: 600
675
676 config :pleroma, Pleroma.Web.Plugs.RemoteIp,
677 enabled: true,
678 headers: ["x-forwarded-for"],
679 proxies: [],
680 reserved: [
681 "127.0.0.0/8",
682 "::1/128",
683 "fc00::/7",
684 "10.0.0.0/8",
685 "172.16.0.0/12",
686 "192.168.0.0/16"
687 ]
688
689 config :pleroma, :static_fe, enabled: false
690
691 # Example of frontend configuration
692 # This example will make us serve the primary frontend from the
693 # frontends directory within your `:pleroma, :instance, static_dir`.
694 # e.g., instance/static/frontends/pleroma/develop/
695 #
696 # With no frontend configuration, the bundled files from the `static` directory will
697 # be used.
698 #
699 # config :pleroma, :frontends,
700 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
701 # admin: %{"name" => "admin-fe", "ref" => "stable"},
702 # mastodon: %{"enabled" => true, "name" => "mastodon-fe", "ref" => "develop"}
703 # available: %{...}
704
705 config :pleroma, :frontends,
706 primary: %{"name" => "pleroma-fe", "ref" => "stable"},
707 admin: %{"name" => "admin-fe", "ref" => "stable"},
708 mastodon: %{"name" => "mastodon-fe", "ref" => "akkoma"},
709 swagger: %{
710 "name" => "swagger-ui",
711 "ref" => "stable",
712 "enabled" => false
713 },
714 available: %{
715 "pleroma-fe" => %{
716 "name" => "pleroma-fe",
717 "git" => "https://akkoma.dev/AkkomaGang/pleroma-fe",
718 "build_url" =>
719 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/akkoma-fe.zip",
720 "ref" => "stable",
721 "build_dir" => "dist"
722 },
723 # Mastodon-Fe cannot be set as a primary - this is only here so we can update this seperately
724 "mastodon-fe" => %{
725 "name" => "mastodon-fe",
726 "git" => "https://akkoma.dev/AkkomaGang/masto-fe",
727 "build_url" =>
728 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/masto-fe.zip",
729 "build_dir" => "distribution",
730 "ref" => "akkoma"
731 },
732 "admin-fe" => %{
733 "name" => "admin-fe",
734 "git" => "https://akkoma.dev/AkkomaGang/admin-fe",
735 "build_url" =>
736 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/admin-fe.zip",
737 "ref" => "stable"
738 },
739 "soapbox-fe" => %{
740 "name" => "soapbox-fe",
741 "git" => "https://gitlab.com/soapbox-pub/soapbox-fe",
742 "build_url" =>
743 "https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/${ref}/download?job=build-production",
744 "ref" => "v1.0.0",
745 "build_dir" => "static"
746 },
747 # For developers - enables a swagger frontend to view the openapi spec
748 "swagger-ui" => %{
749 "name" => "swagger-ui",
750 "git" => "https://github.com/swagger-api/swagger-ui",
751 "build_url" => "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/swagger-ui.zip",
752 "build_dir" => "dist",
753 "ref" => "stable"
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, :majic_pool, size: 2
770
771 private_instance? = :if_instance_is_private
772
773 config :pleroma, :restrict_unauthenticated,
774 timelines: %{local: private_instance?, federated: private_instance?},
775 profiles: %{local: private_instance?, remote: private_instance?},
776 activities: %{local: private_instance?, remote: private_instance?}
777
778 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
779
780 config :pleroma, :mrf,
781 policies: [Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy, Pleroma.Web.ActivityPub.MRF.TagPolicy],
782 transparency: true,
783 transparency_exclusions: []
784
785 config :ex_aws, http_client: Pleroma.HTTP.ExAws
786
787 config :web_push_encryption, http_client: Pleroma.HTTP.WebPush
788
789 config :pleroma, :instances_favicons, enabled: false
790
791 config :floki, :html_parser, Floki.HTMLParser.FastHtml
792
793 config :pleroma, Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator
794
795 config :pleroma, Pleroma.User.Backup,
796 purge_after_days: 30,
797 limit_days: 7,
798 dir: nil
799
800 config :pleroma, ConcurrentLimiter, [
801 {Pleroma.Web.RichMedia.Helpers, [max_running: 5, max_waiting: 5]},
802 {Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy, [max_running: 5, max_waiting: 5]},
803 {Pleroma.Search, [max_running: 30, max_waiting: 50]}
804 ]
805
806 config :pleroma, Pleroma.Search, module: Pleroma.Search.DatabaseSearch
807
808 config :pleroma, Pleroma.Search.Meilisearch,
809 url: "http://127.0.0.1:7700/",
810 private_key: nil,
811 initial_indexing_chunk_size: 100_000
812
813 config :pleroma, Pleroma.Search.Elasticsearch.Cluster,
814 url: "http://localhost:9200",
815 username: "elastic",
816 password: "changeme",
817 api: Elasticsearch.API.HTTP,
818 json_library: Jason,
819 indexes: %{
820 activities: %{
821 settings: "priv/es-mappings/activity.json",
822 store: Pleroma.Search.Elasticsearch.Store,
823 sources: [Pleroma.Activity],
824 bulk_page_size: 1000,
825 bulk_wait_interval: 15_000
826 }
827 }
828
829 # Import environment specific config. This must remain at the bottom
830 # of this file so it overrides the configuration defined above.
831 import_config "#{Mix.env()}.exs"