add bubble timeline (#100)
[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 local_bubble: []
264
265 config :pleroma, :welcome,
266 direct_message: [
267 enabled: false,
268 sender_nickname: nil,
269 message: nil
270 ],
271 email: [
272 enabled: false,
273 sender: nil,
274 subject: "Welcome to <%= instance_name %>",
275 html: "Welcome to <%= instance_name %>",
276 text: "Welcome to <%= instance_name %>"
277 ]
278
279 config :pleroma, :feed,
280 post_title: %{
281 max_length: 100,
282 omission: "..."
283 }
284
285 config :pleroma, :markup,
286 # XXX - unfortunately, inline images must be enabled by default right now, because
287 # of custom emoji. Issue #275 discusses defanging that somehow.
288 allow_inline_images: true,
289 allow_headings: false,
290 allow_tables: false,
291 allow_fonts: false,
292 scrub_policy: [
293 Pleroma.HTML.Scrubber.Default,
294 Pleroma.HTML.Transform.MediaProxy
295 ]
296
297 config :pleroma, :frontend_configurations,
298 pleroma_fe: %{
299 alwaysShowSubjectInput: true,
300 background: "/images/city.jpg",
301 collapseMessageWithSubject: false,
302 disableChat: false,
303 greentext: false,
304 hideFilteredStatuses: false,
305 hideMutedPosts: false,
306 hidePostStats: false,
307 hideSitename: false,
308 hideUserStats: false,
309 loginMethod: "password",
310 logo: "/static/logo.svg",
311 logoMargin: ".1em",
312 logoMask: true,
313 minimalScopesMode: false,
314 noAttachmentLinks: false,
315 nsfwCensorImage: "",
316 postContentType: "text/plain",
317 redirectRootLogin: "/main/friends",
318 redirectRootNoLogin: "/main/all",
319 scopeCopy: true,
320 sidebarRight: false,
321 showFeaturesPanel: true,
322 showInstanceSpecificPanel: false,
323 subjectLineBehavior: "email",
324 theme: "pleroma-dark",
325 webPushNotifications: false
326 },
327 masto_fe: %{
328 showInstanceSpecificPanel: true
329 }
330
331 config :pleroma, :assets,
332 mascots: [
333 pleroma_fox_tan: %{
334 url: "/images/pleroma-fox-tan-smol.png",
335 mime_type: "image/png"
336 },
337 pleroma_fox_tan_shy: %{
338 url: "/images/pleroma-fox-tan-shy.png",
339 mime_type: "image/png"
340 }
341 ],
342 default_mascot: :pleroma_fox_tan
343
344 config :pleroma, :manifest,
345 icons: [
346 %{
347 src: "/static/logo.svg",
348 type: "image/svg+xml"
349 }
350 ],
351 theme_color: "#282c37",
352 background_color: "#191b22"
353
354 config :pleroma, :activitypub,
355 unfollow_blocked: true,
356 outgoing_blocks: true,
357 blockers_visible: true,
358 follow_handshake_timeout: 500,
359 note_replies_output_limit: 5,
360 sign_object_fetches: true,
361 authorized_fetch_mode: false,
362 max_collection_objects: 50
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_hashtag,
398 sensitive: ["nsfw"],
399 reject: [],
400 federated_timeline_removal: []
401
402 config :pleroma, :mrf_subchain, match_actor: %{}
403
404 config :pleroma, :mrf_activity_expiration, days: 365
405
406 config :pleroma, :mrf_vocabulary,
407 accept: [],
408 reject: []
409
410 # threshold of 7 days
411 config :pleroma, :mrf_object_age,
412 threshold: 604_800,
413 actions: [:delist, :strip_followers]
414
415 config :pleroma, :mrf_follow_bot, follower_nickname: nil
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 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
438 max_read_duration: 30_000
439 ],
440 whitelist: []
441
442 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
443 method: :purge,
444 headers: [],
445 options: []
446
447 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script,
448 script_path: nil,
449 url_format: nil
450
451 # Note: media preview proxy depends on media proxy to be enabled
452 config :pleroma, :media_preview_proxy,
453 enabled: false,
454 thumbnail_max_width: 600,
455 thumbnail_max_height: 600,
456 image_quality: 85,
457 min_content_length: 100 * 1024
458
459 config :pleroma, :shout,
460 enabled: true,
461 limit: 5_000
462
463 config :phoenix, :format_encoders, json: Jason, "activity+json": Jason
464
465 config :phoenix, :json_library, Jason
466
467 config :phoenix, :filter_parameters, ["password", "confirm"]
468
469 config :pleroma, Pleroma.Web.Metadata,
470 providers: [
471 Pleroma.Web.Metadata.Providers.OpenGraph,
472 Pleroma.Web.Metadata.Providers.TwitterCard
473 ],
474 unfurl_nsfw: false
475
476 config :pleroma, Pleroma.Web.Metadata.Providers.Theme, theme_color: "#593196"
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 "akkoma",
511 "api",
512 "auth",
513 "check_password",
514 "dev",
515 "friend-requests",
516 "inbox",
517 "internal",
518 "main",
519 "media",
520 "nodeinfo",
521 "notice",
522 "oauth",
523 "objects",
524 "ostatus_subscribe",
525 "pleroma",
526 "proxy",
527 "push",
528 "registration",
529 "relay",
530 "settings",
531 "status",
532 "tag",
533 "user-search",
534 "user_exists",
535 "users",
536 "web",
537 "verify_credentials",
538 "update_credentials",
539 "relationships",
540 "search",
541 "confirmation_resend",
542 "mfa"
543 ],
544 email_blacklist: []
545
546 config :pleroma, Oban,
547 repo: Pleroma.Repo,
548 log: false,
549 queues: [
550 activity_expiration: 10,
551 token_expiration: 5,
552 filter_expiration: 1,
553 backup: 1,
554 federator_incoming: 50,
555 federator_outgoing: 50,
556 ingestion_queue: 50,
557 web_push: 50,
558 mailer: 10,
559 transmogrifier: 20,
560 scheduled_activities: 10,
561 poll_notifications: 10,
562 background: 5,
563 remote_fetcher: 2,
564 attachments_cleanup: 1,
565 new_users_digest: 1,
566 mute_expire: 5,
567 search_indexing: 10
568 ],
569 plugins: [Oban.Plugins.Pruner],
570 crontab: [
571 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
572 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
573 ]
574
575 config :pleroma, :workers,
576 retries: [
577 federator_incoming: 5,
578 federator_outgoing: 5,
579 search_indexing: 2
580 ]
581
582 config :pleroma, Pleroma.Formatter,
583 class: false,
584 rel: "ugc",
585 new_window: false,
586 truncate: false,
587 strip_prefix: false,
588 extra: true,
589 validate_tld: :no_scheme
590
591 oauth_consumer_strategies =
592 "OAUTH_CONSUMER_STRATEGIES"
593 |> System.get_env()
594 |> to_string()
595 |> String.split()
596 |> Enum.map(&hd(String.split(&1, ":")))
597
598 ueberauth_providers =
599 for strategy <- oauth_consumer_strategies do
600 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
601 strategy_module = String.to_atom(strategy_module_name)
602 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
603 end
604
605 config :ueberauth,
606 Ueberauth,
607 base_path: "/oauth",
608 providers: ueberauth_providers
609
610 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
611
612 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
613
614 config :pleroma, Pleroma.Emails.UserEmail,
615 logo: nil,
616 styling: %{
617 link_color: "#d8a070",
618 background_color: "#2C3645",
619 content_background_color: "#1B2635",
620 header_color: "#d8a070",
621 text_color: "#b9b9ba",
622 text_muted_color: "#b9b9ba"
623 }
624
625 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
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: 3600 * 24 * 365 * 100,
641 issue_new_refresh_token: true,
642 clean_expired_tokens: false
643
644 config :pleroma, :database, rum_enabled: false
645
646 config :pleroma, :features, improved_hashtag_timeline: :auto
647
648 config :pleroma, :populate_hashtags_table, fault_rate_allowance: 0.01
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.Web.Plugs.RemoteIp,
671 enabled: true,
672 headers: ["x-forwarded-for"],
673 proxies: [],
674 reserved: [
675 "127.0.0.0/8",
676 "::1/128",
677 "fc00::/7",
678 "10.0.0.0/8",
679 "172.16.0.0/12",
680 "192.168.0.0/16"
681 ]
682
683 config :pleroma, :static_fe, enabled: false
684
685 # Example of frontend configuration
686 # This example will make us serve the primary frontend from the
687 # frontends directory within your `:pleroma, :instance, static_dir`.
688 # e.g., instance/static/frontends/pleroma/develop/
689 #
690 # With no frontend configuration, the bundled files from the `static` directory will
691 # be used.
692 #
693 # config :pleroma, :frontends,
694 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
695 # admin: %{"name" => "admin-fe", "ref" => "stable"},
696 # mastodon: %{"enabled" => true, "name" => "mastodon-fe", "ref" => "develop"}
697 # available: %{...}
698
699 config :pleroma, :frontends,
700 primary: %{"name" => "pleroma-fe", "ref" => "stable"},
701 admin: %{"name" => "admin-fe", "ref" => "stable"},
702 mastodon: %{"name" => "mastodon-fe", "ref" => "akkoma"},
703 swagger: %{
704 "name" => "swagger-ui",
705 "ref" => "stable",
706 "enabled" => false
707 },
708 available: %{
709 "pleroma-fe" => %{
710 "name" => "pleroma-fe",
711 "git" => "https://akkoma.dev/AkkomaGang/pleroma-fe",
712 "build_url" =>
713 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/akkoma-fe.zip",
714 "ref" => "stable",
715 "build_dir" => "dist"
716 },
717 # Mastodon-Fe cannot be set as a primary - this is only here so we can update this seperately
718 "mastodon-fe" => %{
719 "name" => "mastodon-fe",
720 "git" => "https://akkoma.dev/AkkomaGang/masto-fe",
721 "build_url" =>
722 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/masto-fe.zip",
723 "build_dir" => "distribution",
724 "ref" => "akkoma"
725 },
726 "admin-fe" => %{
727 "name" => "admin-fe",
728 "git" => "https://akkoma.dev/AkkomaGang/admin-fe",
729 "build_url" =>
730 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/admin-fe.zip",
731 "ref" => "stable"
732 },
733 "soapbox-fe" => %{
734 "name" => "soapbox-fe",
735 "git" => "https://gitlab.com/soapbox-pub/soapbox-fe",
736 "build_url" =>
737 "https://gitlab.com/soapbox-pub/soapbox-fe/-/jobs/artifacts/${ref}/download?job=build-production",
738 "ref" => "v1.0.0",
739 "build_dir" => "static"
740 },
741 # For developers - enables a swagger frontend to view the openapi spec
742 "swagger-ui" => %{
743 "name" => "swagger-ui",
744 "git" => "https://github.com/swagger-api/swagger-ui",
745 "build_url" => "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/swagger-ui.zip",
746 "build_dir" => "dist",
747 "ref" => "stable"
748 }
749 }
750
751 config :pleroma, :web_cache_ttl,
752 activity_pub: nil,
753 activity_pub_question: 30_000
754
755 config :pleroma, :modules, runtime_dir: "instance/modules"
756
757 config :pleroma, configurable_from_database: false
758
759 config :pleroma, Pleroma.Repo,
760 parameters: [gin_fuzzy_search_limit: "500"],
761 prepare: :unnamed
762
763 config :pleroma, :majic_pool, size: 2
764
765 private_instance? = :if_instance_is_private
766
767 config :pleroma, :restrict_unauthenticated,
768 timelines: %{local: private_instance?, federated: private_instance?},
769 profiles: %{local: private_instance?, remote: private_instance?},
770 activities: %{local: private_instance?, remote: private_instance?}
771
772 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
773
774 config :pleroma, :mrf,
775 policies: [Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy, Pleroma.Web.ActivityPub.MRF.TagPolicy],
776 transparency: true,
777 transparency_exclusions: []
778
779 config :ex_aws, http_client: Pleroma.HTTP.ExAws
780
781 config :web_push_encryption, http_client: Pleroma.HTTP.WebPush
782
783 config :pleroma, :instances_favicons, enabled: false
784
785 config :floki, :html_parser, Floki.HTMLParser.FastHtml
786
787 config :pleroma, Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator
788
789 config :pleroma, Pleroma.User.Backup,
790 purge_after_days: 30,
791 limit_days: 7,
792 dir: nil
793
794 config :pleroma, ConcurrentLimiter, [
795 {Pleroma.Web.RichMedia.Helpers, [max_running: 5, max_waiting: 5]},
796 {Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy, [max_running: 5, max_waiting: 5]},
797 {Pleroma.Search, [max_running: 30, max_waiting: 50]}
798 ]
799
800 config :pleroma, Pleroma.Search, module: Pleroma.Search.DatabaseSearch
801
802 config :pleroma, Pleroma.Search.Meilisearch,
803 url: "http://127.0.0.1:7700/",
804 private_key: nil,
805 initial_indexing_chunk_size: 100_000
806
807 config :pleroma, Pleroma.Search.Elasticsearch.Cluster,
808 url: "http://localhost:9200",
809 username: "elastic",
810 password: "changeme",
811 api: Elasticsearch.API.HTTP,
812 json_library: Jason,
813 indexes: %{
814 activities: %{
815 settings: "priv/es-mappings/activity.json",
816 store: Pleroma.Search.Elasticsearch.Store,
817 sources: [Pleroma.Activity],
818 bulk_page_size: 1000,
819 bulk_wait_interval: 15_000
820 }
821 }
822
823 # Import environment specific config. This must remain at the bottom
824 # of this file so it overrides the configuration defined above.
825 import_config "#{Mix.env()}.exs"