change default redirectRootNoLogin to /main/public
[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 queue_target: 20_000,
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 filename_display_max_length: 30,
68 default_description: nil,
69 base_url: nil
70
71 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
72
73 config :pleroma, Pleroma.Uploaders.S3,
74 bucket: nil,
75 bucket_namespace: nil,
76 truncated_namespace: nil,
77 streaming_enabled: true
78
79 config :ex_aws, :s3,
80 # host: "s3.wasabisys.com", # required if not Amazon AWS
81 access_key_id: nil,
82 secret_access_key: nil,
83 # region: "us-east-1", # may be required for Amazon AWS
84 scheme: "https://"
85
86 config :pleroma, :emoji,
87 shortcode_globs: ["/emoji/custom/**/*.png"],
88 pack_extensions: [".png", ".gif"],
89 groups: [
90 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
91 ],
92 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
93 shared_pack_cache_seconds_per_file: 60
94
95 config :pleroma, :uri_schemes,
96 valid_schemes: [
97 "https",
98 "http",
99 "dat",
100 "dweb",
101 "gopher",
102 "hyper",
103 "ipfs",
104 "ipns",
105 "irc",
106 "ircs",
107 "magnet",
108 "mailto",
109 "mumble",
110 "ssb",
111 "xmpp"
112 ]
113
114 websocket_config = [
115 path: "/websocket",
116 serializer: [
117 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
118 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
119 ],
120 timeout: 60_000,
121 transport_log: false,
122 compress: false
123 ]
124
125 # Configures the endpoint
126 config :pleroma, Pleroma.Web.Endpoint,
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 live_view: [signing_salt: "U5ELgdEwTD3n1+D5s0rY0AMg8/y1STxZ3Zvsl3bWh+oBcGrYdil0rXqPMRd3Glcq"],
144 signing_salt: "CqaoopA2",
145 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
146 pubsub_server: Pleroma.PubSub,
147 secure_cookie_flag: true,
148 extra_cookie_attrs: [
149 "SameSite=Lax"
150 ]
151
152 # Configures Elixir's Logger
153 config :logger, truncate: 65_536
154
155 config :logger, :console,
156 level: :info,
157 format: "\n$time $metadata[$level] $message\n",
158 metadata: [:request_id]
159
160 config :logger, :ex_syslogger,
161 level: :info,
162 ident: "pleroma",
163 format: "$metadata[$level] $message",
164 metadata: [:request_id]
165
166 config :quack,
167 level: :warn,
168 meta: [:all],
169 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
170
171 config :mime, :types, %{
172 "application/xml" => ["xml"],
173 "application/xrd+xml" => ["xrd+xml"],
174 "application/jrd+json" => ["jrd+json"],
175 "application/activity+json" => ["activity+json"],
176 "application/ld+json" => ["activity+json"]
177 }
178
179 config :tesla, :adapter, {Tesla.Adapter.Finch, name: MyFinch}
180
181 # Configures http settings, upstream proxy etc.
182 config :pleroma, :http,
183 proxy_url: nil,
184 user_agent: :default,
185 adapter: []
186
187 config :pleroma, :instance,
188 name: "Akkoma",
189 email: "example@example.com",
190 notify_email: "noreply@example.com",
191 description: "Akkoma: The cooler fediverse server",
192 background_image: "/images/city.jpg",
193 instance_thumbnail: "/instance/thumbnail.jpeg",
194 limit: 5_000,
195 description_limit: 5_000,
196 remote_limit: 100_000,
197 upload_limit: 16_000_000,
198 avatar_upload_limit: 2_000_000,
199 background_upload_limit: 4_000_000,
200 banner_upload_limit: 4_000_000,
201 languages: ["en"],
202 poll_limits: %{
203 max_options: 20,
204 max_option_chars: 200,
205 min_expiration: 0,
206 max_expiration: 365 * 24 * 60 * 60
207 },
208 registrations_open: true,
209 invites_enabled: false,
210 account_activation_required: false,
211 account_approval_required: false,
212 federating: true,
213 federation_incoming_replies_max_depth: 100,
214 federation_reachability_timeout_days: 7,
215 federation_publisher_modules: [
216 Pleroma.Web.ActivityPub.Publisher
217 ],
218 allow_relay: true,
219 public: true,
220 static_dir: "instance/static/",
221 allowed_post_formats: [
222 "text/plain",
223 "text/html",
224 "text/markdown",
225 "text/bbcode",
226 "text/x.misskeymarkdown"
227 ],
228 staff_transparency: [],
229 autofollowed_nicknames: [],
230 autofollowing_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 password_reset_token_validity: 60 * 60 * 24,
262 profile_directory: true,
263 privileged_staff: false,
264 local_bubble: [],
265 max_frontend_settings_json_chars: 100_000
266
267 config :pleroma, :welcome,
268 direct_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.svg",
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/public",
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.svg",
350 type: "image/svg+xml"
351 }
352 ],
353 theme_color: "#282c37",
354 background_color: "#191b22"
355
356 config :pleroma, :activitypub,
357 unfollow_blocked: true,
358 outgoing_blocks: true,
359 blockers_visible: true,
360 follow_handshake_timeout: 500,
361 note_replies_output_limit: 5,
362 sign_object_fetches: true,
363 authorized_fetch_mode: false,
364 max_collection_objects: 50
365
366 config :pleroma, :streamer,
367 workers: 3,
368 overflow_workers: 2
369
370 config :pleroma, :user, deny_follow_blocked: true
371
372 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
373
374 config :pleroma, :mrf_rejectnonpublic,
375 allow_followersonly: false,
376 allow_direct: false
377
378 config :pleroma, :mrf_hellthread,
379 delist_threshold: 10,
380 reject_threshold: 20
381
382 config :pleroma, :mrf_simple,
383 media_removal: [],
384 media_nsfw: [],
385 federated_timeline_removal: [],
386 report_removal: [],
387 reject: [],
388 followers_only: [],
389 accept: [],
390 avatar_removal: [],
391 banner_removal: [],
392 reject_deletes: []
393
394 config :pleroma, :mrf_keyword,
395 reject: [],
396 federated_timeline_removal: [],
397 replace: []
398
399 config :pleroma, :mrf_hashtag,
400 sensitive: ["nsfw"],
401 reject: [],
402 federated_timeline_removal: []
403
404 config :pleroma, :mrf_subchain, match_actor: %{}
405
406 config :pleroma, :mrf_activity_expiration, days: 365
407
408 config :pleroma, :mrf_vocabulary,
409 accept: [],
410 reject: []
411
412 config :pleroma, :mrf_inline_quote, prefix: "RE"
413
414 # threshold of 7 days
415 config :pleroma, :mrf_object_age,
416 threshold: 604_800,
417 actions: [:delist, :strip_followers]
418
419 config :pleroma, :mrf_follow_bot, follower_nickname: nil
420
421 config :pleroma, :rich_media,
422 enabled: true,
423 ignore_hosts: [],
424 ignore_tld: ["local", "localdomain", "lan"],
425 parsers: [
426 Pleroma.Web.RichMedia.Parsers.TwitterCard,
427 Pleroma.Web.RichMedia.Parsers.OEmbed
428 ],
429 failure_backoff: 60_000,
430 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
431
432 config :pleroma, :media_proxy,
433 enabled: false,
434 invalidation: [
435 enabled: false,
436 provider: Pleroma.Web.MediaProxy.Invalidation.Script
437 ],
438 proxy_opts: [
439 redirect_on_failure: false,
440 max_body_length: 25 * 1_048_576,
441 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
442 max_read_duration: 30_000
443 ],
444 whitelist: []
445
446 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
447 method: :purge,
448 headers: [],
449 options: []
450
451 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script,
452 script_path: nil,
453 url_format: nil
454
455 # Note: media preview proxy depends on media proxy to be enabled
456 config :pleroma, :media_preview_proxy,
457 enabled: false,
458 thumbnail_max_width: 600,
459 thumbnail_max_height: 600,
460 image_quality: 85,
461 min_content_length: 100 * 1024
462
463 config :pleroma, :shout,
464 enabled: true,
465 limit: 5_000
466
467 config :phoenix, :format_encoders, json: Jason, "activity+json": Jason
468
469 config :phoenix, :json_library, Jason
470
471 config :phoenix, :filter_parameters, ["password", "confirm"]
472
473 config :pleroma, Pleroma.Web.Metadata,
474 providers: [
475 Pleroma.Web.Metadata.Providers.OpenGraph,
476 Pleroma.Web.Metadata.Providers.TwitterCard
477 ],
478 unfurl_nsfw: false
479
480 config :pleroma, Pleroma.Web.Metadata.Providers.Theme, theme_color: "#593196"
481
482 config :pleroma, Pleroma.Web.Preload,
483 providers: [
484 Pleroma.Web.Preload.Providers.Instance
485 ]
486
487 config :pleroma, :http_security,
488 enabled: true,
489 sts: false,
490 sts_max_age: 31_536_000,
491 ct_max_age: 2_592_000,
492 referrer_policy: "same-origin"
493
494 config :cors_plug,
495 max_age: 86_400,
496 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
497 expose: [
498 "Link",
499 "X-RateLimit-Reset",
500 "X-RateLimit-Limit",
501 "X-RateLimit-Remaining",
502 "X-Request-Id",
503 "Idempotency-Key"
504 ],
505 credentials: true,
506 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
507
508 config :pleroma, Pleroma.User,
509 restricted_nicknames: [
510 ".well-known",
511 "~",
512 "about",
513 "activities",
514 "api",
515 "auth",
516 "check_password",
517 "dev",
518 "friend-requests",
519 "inbox",
520 "internal",
521 "main",
522 "media",
523 "nodeinfo",
524 "notice",
525 "oauth",
526 "objects",
527 "ostatus_subscribe",
528 "pleroma",
529 "proxy",
530 "push",
531 "registration",
532 "relay",
533 "settings",
534 "status",
535 "tag",
536 "user-search",
537 "user_exists",
538 "users",
539 "web",
540 "verify_credentials",
541 "update_credentials",
542 "relationships",
543 "search",
544 "confirmation_resend",
545 "mfa"
546 ],
547 email_blacklist: []
548
549 config :pleroma, Oban,
550 repo: Pleroma.Repo,
551 log: false,
552 queues: [
553 activity_expiration: 10,
554 token_expiration: 5,
555 filter_expiration: 1,
556 backup: 1,
557 federator_incoming: 50,
558 federator_outgoing: 50,
559 ingestion_queue: 50,
560 web_push: 50,
561 mailer: 10,
562 transmogrifier: 20,
563 scheduled_activities: 10,
564 poll_notifications: 10,
565 background: 5,
566 remote_fetcher: 2,
567 attachments_cleanup: 1,
568 new_users_digest: 1,
569 mute_expire: 5,
570 search_indexing: 10,
571 nodeinfo_fetcher: 1
572 ],
573 plugins: [
574 Oban.Plugins.Pruner,
575 {Oban.Plugins.Reindexer, schedule: "@weekly"}
576 ],
577 crontab: [
578 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
579 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
580 ]
581
582 config :pleroma, :workers,
583 retries: [
584 federator_incoming: 5,
585 federator_outgoing: 5,
586 search_indexing: 2
587 ]
588
589 config :pleroma, Pleroma.Formatter,
590 class: false,
591 rel: "ugc",
592 new_window: false,
593 truncate: false,
594 strip_prefix: false,
595 extra: true,
596 validate_tld: :no_scheme
597
598 config :pleroma, :ldap,
599 enabled: System.get_env("LDAP_ENABLED") == "true",
600 host: System.get_env("LDAP_HOST") || "localhost",
601 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
602 ssl: System.get_env("LDAP_SSL") == "true",
603 sslopts: [],
604 tls: System.get_env("LDAP_TLS") == "true",
605 tlsopts: [],
606 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
607 uid: System.get_env("LDAP_UID") || "cn"
608
609 oauth_consumer_strategies =
610 "OAUTH_CONSUMER_STRATEGIES"
611 |> System.get_env()
612 |> to_string()
613 |> String.split()
614 |> Enum.map(&hd(String.split(&1, ":")))
615
616 ueberauth_providers =
617 for strategy <- oauth_consumer_strategies do
618 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
619 strategy_module = String.to_atom(strategy_module_name)
620 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
621 end
622
623 config :ueberauth,
624 Ueberauth,
625 base_path: "/oauth",
626 providers: ueberauth_providers
627
628 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
629
630 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
631
632 config :pleroma, Pleroma.Emails.UserEmail,
633 logo: nil,
634 styling: %{
635 link_color: "#d8a070",
636 background_color: "#2C3645",
637 content_background_color: "#1B2635",
638 header_color: "#d8a070",
639 text_color: "#b9b9ba",
640 text_muted_color: "#b9b9ba"
641 }
642
643 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
644
645 config :pleroma, Pleroma.ScheduledActivity,
646 daily_user_limit: 25,
647 total_user_limit: 300,
648 enabled: true
649
650 config :pleroma, :email_notifications,
651 digest: %{
652 active: false,
653 interval: 7,
654 inactivity_threshold: 7
655 }
656
657 config :pleroma, :oauth2,
658 token_expires_in: 3600 * 24 * 365 * 100,
659 issue_new_refresh_token: true,
660 clean_expired_tokens: false
661
662 config :pleroma, :database, rum_enabled: false
663
664 config :pleroma, :features, improved_hashtag_timeline: :auto
665
666 config :pleroma, :populate_hashtags_table, fault_rate_allowance: 0.01
667
668 config :pleroma, :env, Mix.env()
669
670 config :http_signatures,
671 adapter: Pleroma.Signature
672
673 config :pleroma, :rate_limit,
674 authentication: {60_000, 15},
675 timeline: {500, 3},
676 search: [{1000, 10}, {1000, 30}],
677 app_account_creation: {1_800_000, 25},
678 relations_actions: {10_000, 10},
679 relation_id_action: {60_000, 2},
680 statuses_actions: {10_000, 15},
681 status_id_action: {60_000, 3},
682 password_reset: {1_800_000, 5},
683 account_confirmation_resend: {8_640_000, 5},
684 ap_routes: {60_000, 15}
685
686 config :pleroma, Pleroma.Workers.PurgeExpiredActivity, enabled: true, min_lifetime: 600
687
688 config :pleroma, Pleroma.Web.Plugs.RemoteIp,
689 enabled: true,
690 headers: ["x-forwarded-for"],
691 proxies: [],
692 reserved: [
693 "127.0.0.0/8",
694 "::1/128",
695 "fc00::/7",
696 "10.0.0.0/8",
697 "172.16.0.0/12",
698 "192.168.0.0/16"
699 ]
700
701 config :pleroma, :static_fe, enabled: false
702
703 # Example of frontend configuration
704 # This example will make us serve the primary frontend from the
705 # frontends directory within your `:pleroma, :instance, static_dir`.
706 # e.g., instance/static/frontends/pleroma/develop/
707 #
708 # With no frontend configuration, the bundled files from the `static` directory will
709 # be used.
710 #
711 # config :pleroma, :frontends,
712 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
713 # admin: %{"name" => "admin-fe", "ref" => "stable"},
714 # mastodon: %{"enabled" => true, "name" => "mastodon-fe", "ref" => "develop"}
715 # available: %{...}
716
717 config :pleroma, :frontends,
718 primary: %{"name" => "pleroma-fe", "ref" => "stable"},
719 admin: %{"name" => "admin-fe", "ref" => "stable"},
720 mastodon: %{"name" => "mastodon-fe", "ref" => "akkoma"},
721 swagger: %{
722 "name" => "swagger-ui",
723 "ref" => "stable",
724 "enabled" => false
725 },
726 available: %{
727 "pleroma-fe" => %{
728 "name" => "pleroma-fe",
729 "git" => "https://akkoma.dev/AkkomaGang/pleroma-fe",
730 "build_url" =>
731 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/akkoma-fe.zip",
732 "ref" => "stable",
733 "build_dir" => "dist"
734 },
735 # Mastodon-Fe cannot be set as a primary - this is only here so we can update this seperately
736 "mastodon-fe" => %{
737 "name" => "mastodon-fe",
738 "git" => "https://akkoma.dev/AkkomaGang/masto-fe",
739 "build_url" =>
740 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/masto-fe.zip",
741 "build_dir" => "distribution",
742 "ref" => "akkoma"
743 },
744 "fedibird-fe" => %{
745 "name" => "fedibird-fe",
746 "git" => "https://akkoma.dev/AkkomaGang/fedibird-fe",
747 "build_url" =>
748 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/fedibird-fe.zip",
749 "build_dir" => "distribution",
750 "ref" => "akkoma"
751 },
752 "admin-fe" => %{
753 "name" => "admin-fe",
754 "git" => "https://akkoma.dev/AkkomaGang/admin-fe",
755 "build_url" =>
756 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/admin-fe.zip",
757 "ref" => "stable"
758 },
759 "soapbox-fe" => %{
760 "name" => "soapbox-fe",
761 "git" => "https://gitlab.com/soapbox-pub/soapbox",
762 "build_url" =>
763 "https://gitlab.com/soapbox-pub/soapbox/-/jobs/artifacts/${ref}/download?job=build-production",
764 "ref" => "v2.0.0",
765 "build_dir" => "static"
766 },
767 # For developers - enables a swagger frontend to view the openapi spec
768 "swagger-ui" => %{
769 "name" => "swagger-ui",
770 "git" => "https://github.com/swagger-api/swagger-ui",
771 "build_url" => "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/swagger-ui.zip",
772 "build_dir" => "dist",
773 "ref" => "stable"
774 }
775 }
776
777 config :pleroma, :web_cache_ttl,
778 activity_pub: nil,
779 activity_pub_question: 30_000
780
781 config :pleroma, :modules, runtime_dir: "instance/modules"
782
783 config :pleroma, configurable_from_database: false
784
785 config :pleroma, Pleroma.Repo,
786 parameters: [gin_fuzzy_search_limit: "500"],
787 prepare: :unnamed
788
789 config :pleroma, :majic_pool, size: 2
790
791 private_instance? = :if_instance_is_private
792
793 config :pleroma, :restrict_unauthenticated,
794 timelines: %{local: private_instance?, federated: private_instance?},
795 profiles: %{local: private_instance?, remote: private_instance?},
796 activities: %{local: private_instance?, remote: private_instance?}
797
798 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
799
800 config :pleroma, :mrf,
801 policies: [Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy, Pleroma.Web.ActivityPub.MRF.TagPolicy],
802 transparency: true,
803 transparency_exclusions: [],
804 transparency_obfuscate_domains: []
805
806 config :ex_aws, http_client: Pleroma.HTTP.ExAws
807
808 config :web_push_encryption, http_client: Pleroma.HTTP.WebPush
809
810 config :pleroma, :instances_favicons, enabled: true
811 config :pleroma, :instances_nodeinfo, enabled: true
812
813 config :floki, :html_parser, Floki.HTMLParser.FastHtml
814
815 config :pleroma, Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator
816
817 config :pleroma, Pleroma.User.Backup,
818 purge_after_days: 30,
819 limit_days: 7,
820 dir: nil
821
822 config :pleroma, ConcurrentLimiter, [
823 {Pleroma.Web.RichMedia.Helpers, [max_running: 5, max_waiting: 5]},
824 {Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy, [max_running: 5, max_waiting: 5]},
825 {Pleroma.Search, [max_running: 30, max_waiting: 50]}
826 ]
827
828 config :pleroma, Pleroma.Web.WebFinger, domain: nil, update_nickname_on_user_fetch: true
829
830 config :pleroma, Pleroma.Search, module: Pleroma.Search.DatabaseSearch
831
832 config :pleroma, Pleroma.Search.Meilisearch,
833 url: "http://127.0.0.1:7700/",
834 private_key: nil,
835 initial_indexing_chunk_size: 100_000
836
837 config :pleroma, Pleroma.Search.Elasticsearch.Cluster,
838 url: "http://localhost:9200",
839 username: "elastic",
840 password: "changeme",
841 api: Elasticsearch.API.HTTP,
842 json_library: Jason,
843 indexes: %{
844 activities: %{
845 settings: "priv/es-mappings/activity.json",
846 store: Pleroma.Search.Elasticsearch.Store,
847 sources: [Pleroma.Activity],
848 bulk_page_size: 1000,
849 bulk_wait_interval: 15_000
850 }
851 }
852
853 config :pleroma, :translator,
854 enabled: false,
855 module: Pleroma.Akkoma.Translators.DeepL
856
857 config :pleroma, :deepl,
858 # either :free or :pro
859 tier: :free,
860 api_key: ""
861
862 config :pleroma, :libre_translate,
863 url: "http://127.0.0.1:5000",
864 api_key: nil
865
866 # Import environment specific config. This must remain at the bottom
867 # of this file so it overrides the configuration defined above.
868 import_config "#{Mix.env()}.exs"