Remove quack, ensure adapter is finch
[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 :mime, :types, %{
167 "application/xml" => ["xml"],
168 "application/xrd+xml" => ["xrd+xml"],
169 "application/jrd+json" => ["jrd+json"],
170 "application/activity+json" => ["activity+json"],
171 "application/ld+json" => ["activity+json"]
172 }
173
174 config :tesla, :adapter, {Tesla.Adapter.Finch, name: MyFinch}
175
176 # Configures http settings, upstream proxy etc.
177 config :pleroma, :http,
178 pool_timeout: :timer.seconds(5),
179 receive_timeout: :timer.seconds(15),
180 proxy_url: nil,
181 user_agent: :default,
182 adapter: []
183
184 config :pleroma, :instance,
185 name: "Akkoma",
186 email: "example@example.com",
187 notify_email: "noreply@example.com",
188 description: "Akkoma: The cooler fediverse server",
189 background_image: "/images/city.jpg",
190 instance_thumbnail: "/instance/thumbnail.jpeg",
191 limit: 5_000,
192 description_limit: 5_000,
193 remote_limit: 100_000,
194 upload_limit: 16_000_000,
195 avatar_upload_limit: 2_000_000,
196 background_upload_limit: 4_000_000,
197 banner_upload_limit: 4_000_000,
198 languages: ["en"],
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: false,
216 public: true,
217 static_dir: "instance/static/",
218 allowed_post_formats: [
219 "text/plain",
220 "text/html",
221 "text/markdown",
222 "text/bbcode",
223 "text/x.misskeymarkdown"
224 ],
225 staff_transparency: [],
226 autofollowed_nicknames: [],
227 autofollowing_nicknames: [],
228 max_pinned_statuses: 1,
229 attachment_links: false,
230 max_report_comment_size: 1000,
231 safe_dm_mentions: false,
232 healthcheck: false,
233 remote_post_retention_days: 90,
234 skip_thread_containment: true,
235 limit_to_local_content: :unauthenticated,
236 user_bio_length: 5000,
237 user_name_length: 100,
238 max_account_fields: 10,
239 max_remote_account_fields: 20,
240 account_field_name_length: 512,
241 account_field_value_length: 2048,
242 registration_reason_length: 500,
243 external_user_synchronization: true,
244 extended_nickname_format: true,
245 cleanup_attachments: false,
246 multi_factor_authentication: [
247 totp: [
248 # digits 6 or 8
249 digits: 6,
250 period: 30
251 ],
252 backup_codes: [
253 number: 5,
254 length: 16
255 ]
256 ],
257 show_reactions: true,
258 password_reset_token_validity: 60 * 60 * 24,
259 profile_directory: true,
260 privileged_staff: false,
261 local_bubble: [],
262 max_frontend_settings_json_chars: 100_000
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 noAttachmentLinks: false,
313 nsfwCensorImage: "",
314 postContentType: "text/plain",
315 redirectRootLogin: "/main/friends",
316 redirectRootNoLogin: "/main/public",
317 scopeCopy: true,
318 sidebarRight: false,
319 showFeaturesPanel: true,
320 showInstanceSpecificPanel: false,
321 subjectLineBehavior: "email",
322 theme: "pleroma-dark",
323 webPushNotifications: false,
324 conversationDisplay: "linear"
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 handle_threads: true
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 config :pleroma, :mrf_inline_quote, prefix: "RE"
411
412 # threshold of 7 days
413 config :pleroma, :mrf_object_age,
414 threshold: 604_800,
415 actions: [:delist, :strip_followers]
416
417 config :pleroma, :mrf_follow_bot, follower_nickname: nil
418
419 config :pleroma, :rich_media,
420 enabled: true,
421 ignore_hosts: [],
422 ignore_tld: ["local", "localdomain", "lan"],
423 parsers: [
424 Pleroma.Web.RichMedia.Parsers.TwitterCard,
425 Pleroma.Web.RichMedia.Parsers.OEmbed
426 ],
427 failure_backoff: 60_000,
428 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
429
430 config :pleroma, :media_proxy,
431 enabled: false,
432 invalidation: [
433 enabled: false,
434 provider: Pleroma.Web.MediaProxy.Invalidation.Script
435 ],
436 proxy_opts: [
437 redirect_on_failure: false,
438 max_body_length: 25 * 1_048_576,
439 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
440 max_read_duration: 30_000
441 ],
442 whitelist: []
443
444 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
445 method: :purge,
446 headers: [],
447 options: []
448
449 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script,
450 script_path: nil,
451 url_format: nil
452
453 # Note: media preview proxy depends on media proxy to be enabled
454 config :pleroma, :media_preview_proxy,
455 enabled: false,
456 thumbnail_max_width: 600,
457 thumbnail_max_height: 600,
458 image_quality: 85,
459 min_content_length: 100 * 1024
460
461 config :pleroma, :shout,
462 enabled: true,
463 limit: 5_000
464
465 config :phoenix, :format_encoders, json: Jason, "activity+json": Jason
466
467 config :phoenix, :json_library, Jason
468
469 config :phoenix, :filter_parameters, ["password", "confirm"]
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.Metadata.Providers.Theme, theme_color: "#593196"
479
480 config :pleroma, Pleroma.Web.Preload,
481 providers: [
482 Pleroma.Web.Preload.Providers.Instance
483 ]
484
485 config :pleroma, :http_security,
486 enabled: true,
487 sts: false,
488 sts_max_age: 63_072_000,
489 referrer_policy: "same-origin"
490
491 config :cors_plug,
492 max_age: 86_400,
493 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
494 expose: [
495 "Link",
496 "X-RateLimit-Reset",
497 "X-RateLimit-Limit",
498 "X-RateLimit-Remaining",
499 "X-Request-Id",
500 "Idempotency-Key"
501 ],
502 credentials: true,
503 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
504
505 config :pleroma, Pleroma.User,
506 restricted_nicknames: [
507 ".well-known",
508 "~",
509 "about",
510 "activities",
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 nodeinfo_fetcher: 1,
569 database_prune: 1
570 ],
571 plugins: [
572 Oban.Plugins.Pruner,
573 {Oban.Plugins.Reindexer, schedule: "@weekly"}
574 ],
575 crontab: [
576 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
577 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker},
578 {"0 3 * * *", Pleroma.Workers.Cron.PruneDatabaseWorker}
579 ]
580
581 config :pleroma, :workers,
582 retries: [
583 federator_incoming: 5,
584 federator_outgoing: 5,
585 search_indexing: 2
586 ],
587 timeout: [
588 activity_expiration: :timer.seconds(5),
589 token_expiration: :timer.seconds(5),
590 filter_expiration: :timer.seconds(5),
591 backup: :timer.seconds(900),
592 federator_incoming: :timer.seconds(10),
593 federator_outgoing: :timer.seconds(10),
594 ingestion_queue: :timer.seconds(5),
595 web_push: :timer.seconds(5),
596 mailer: :timer.seconds(5),
597 transmogrifier: :timer.seconds(5),
598 scheduled_activities: :timer.seconds(5),
599 poll_notifications: :timer.seconds(5),
600 background: :timer.seconds(5),
601 remote_fetcher: :timer.seconds(10),
602 attachments_cleanup: :timer.seconds(900),
603 new_users_digest: :timer.seconds(10),
604 mute_expire: :timer.seconds(5),
605 search_indexing: :timer.seconds(5),
606 nodeinfo_fetcher: :timer.seconds(10),
607 database_prune: :timer.minutes(10)
608 ]
609
610 config :pleroma, Pleroma.Formatter,
611 class: false,
612 rel: "ugc",
613 new_window: false,
614 truncate: false,
615 strip_prefix: false,
616 extra: true,
617 validate_tld: :no_scheme
618
619 config :pleroma, :ldap,
620 enabled: System.get_env("LDAP_ENABLED") == "true",
621 host: System.get_env("LDAP_HOST") || "localhost",
622 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
623 ssl: System.get_env("LDAP_SSL") == "true",
624 sslopts: [],
625 tls: System.get_env("LDAP_TLS") == "true",
626 tlsopts: [],
627 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
628 uid: System.get_env("LDAP_UID") || "cn"
629
630 oauth_consumer_strategies =
631 "OAUTH_CONSUMER_STRATEGIES"
632 |> System.get_env()
633 |> to_string()
634 |> String.split()
635 |> Enum.map(&hd(String.split(&1, ":")))
636
637 ueberauth_providers =
638 for strategy <- oauth_consumer_strategies do
639 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
640 strategy_module = String.to_atom(strategy_module_name)
641 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
642 end
643
644 config :ueberauth,
645 Ueberauth,
646 base_path: "/oauth",
647 providers: ueberauth_providers
648
649 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
650
651 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
652
653 config :swoosh,
654 api_client: Swoosh.ApiClient.Finch,
655 finch_name: MyFinch
656
657 config :pleroma, Pleroma.Emails.UserEmail,
658 logo: nil,
659 styling: %{
660 link_color: "#d8a070",
661 background_color: "#2C3645",
662 content_background_color: "#1B2635",
663 header_color: "#d8a070",
664 text_color: "#b9b9ba",
665 text_muted_color: "#b9b9ba"
666 }
667
668 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
669
670 config :pleroma, Pleroma.ScheduledActivity,
671 daily_user_limit: 25,
672 total_user_limit: 300,
673 enabled: true
674
675 config :pleroma, :email_notifications,
676 digest: %{
677 active: false,
678 interval: 7,
679 inactivity_threshold: 7
680 }
681
682 config :pleroma, :oauth2,
683 token_expires_in: 3600 * 24 * 365 * 100,
684 issue_new_refresh_token: true,
685 clean_expired_tokens: false
686
687 config :pleroma, :database, rum_enabled: false
688
689 config :pleroma, :features, improved_hashtag_timeline: :auto
690
691 config :pleroma, :populate_hashtags_table, fault_rate_allowance: 0.01
692
693 config :pleroma, :env, Mix.env()
694
695 config :http_signatures,
696 adapter: Pleroma.Signature
697
698 config :pleroma, :rate_limit,
699 authentication: {60_000, 15},
700 timeline: {500, 3},
701 search: [{1000, 10}, {1000, 30}],
702 app_account_creation: {1_800_000, 25},
703 relations_actions: {10_000, 10},
704 relation_id_action: {60_000, 2},
705 statuses_actions: {10_000, 15},
706 status_id_action: {60_000, 3},
707 password_reset: {1_800_000, 5},
708 account_confirmation_resend: {8_640_000, 5},
709 ap_routes: {60_000, 15}
710
711 config :pleroma, Pleroma.Workers.PurgeExpiredActivity, enabled: true, min_lifetime: 600
712
713 config :pleroma, Pleroma.Web.Plugs.RemoteIp,
714 enabled: true,
715 headers: ["x-forwarded-for"],
716 proxies: [],
717 reserved: [
718 "127.0.0.0/8",
719 "::1/128",
720 "fc00::/7",
721 "10.0.0.0/8",
722 "172.16.0.0/12",
723 "192.168.0.0/16"
724 ]
725
726 config :pleroma, :static_fe, enabled: false
727
728 # Example of frontend configuration
729 # This example will make us serve the primary frontend from the
730 # frontends directory within your `:pleroma, :instance, static_dir`.
731 # e.g., instance/static/frontends/pleroma/develop/
732 #
733 # With no frontend configuration, the bundled files from the `static` directory will
734 # be used.
735 #
736 # config :pleroma, :frontends,
737 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
738 # admin: %{"name" => "admin-fe", "ref" => "stable"},
739 # mastodon: %{"enabled" => true, "name" => "mastodon-fe", "ref" => "develop"}
740 # available: %{...}
741
742 config :pleroma, :frontends,
743 primary: %{"name" => "pleroma-fe", "ref" => "stable"},
744 admin: %{"name" => "admin-fe", "ref" => "stable"},
745 mastodon: %{"name" => "mastodon-fe", "ref" => "akkoma"},
746 swagger: %{
747 "name" => "swagger-ui",
748 "ref" => "stable",
749 "enabled" => false
750 },
751 available: %{
752 "pleroma-fe" => %{
753 "name" => "pleroma-fe",
754 "git" => "https://akkoma.dev/AkkomaGang/pleroma-fe",
755 "build_url" =>
756 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/akkoma-fe.zip",
757 "ref" => "stable",
758 "build_dir" => "dist"
759 },
760 # Mastodon-Fe cannot be set as a primary - this is only here so we can update this seperately
761 "mastodon-fe" => %{
762 "name" => "mastodon-fe",
763 "git" => "https://akkoma.dev/AkkomaGang/masto-fe",
764 "build_url" =>
765 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/masto-fe.zip",
766 "build_dir" => "distribution",
767 "ref" => "akkoma"
768 },
769 "fedibird-fe" => %{
770 "name" => "fedibird-fe",
771 "git" => "https://akkoma.dev/AkkomaGang/fedibird-fe",
772 "build_url" =>
773 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/fedibird-fe.zip",
774 "build_dir" => "distribution",
775 "ref" => "akkoma"
776 },
777 "admin-fe" => %{
778 "name" => "admin-fe",
779 "git" => "https://akkoma.dev/AkkomaGang/admin-fe",
780 "build_url" =>
781 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/admin-fe.zip",
782 "ref" => "stable"
783 },
784 "soapbox-fe" => %{
785 "name" => "soapbox-fe",
786 "git" => "https://gitlab.com/soapbox-pub/soapbox",
787 "build_url" =>
788 "https://gitlab.com/soapbox-pub/soapbox/-/jobs/artifacts/${ref}/download?job=build-production",
789 "ref" => "v2.0.0",
790 "build_dir" => "static"
791 },
792 # For developers - enables a swagger frontend to view the openapi spec
793 "swagger-ui" => %{
794 "name" => "swagger-ui",
795 "git" => "https://github.com/swagger-api/swagger-ui",
796 "build_url" => "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/swagger-ui.zip",
797 "build_dir" => "dist",
798 "ref" => "stable"
799 }
800 }
801
802 config :pleroma, :web_cache_ttl,
803 activity_pub: nil,
804 activity_pub_question: 30_000
805
806 config :pleroma, :modules, runtime_dir: "instance/modules"
807
808 config :pleroma, configurable_from_database: false
809
810 config :pleroma, Pleroma.Repo,
811 parameters: [gin_fuzzy_search_limit: "500"],
812 prepare: :unnamed
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 transparency_obfuscate_domains: []
830
831 config :ex_aws, http_client: Pleroma.HTTP.ExAws
832
833 config :web_push_encryption, http_client: Pleroma.HTTP.WebPush
834
835 config :pleroma, :instances_favicons, enabled: true
836 config :pleroma, :instances_nodeinfo, enabled: true
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 {Pleroma.Search, [max_running: 30, max_waiting: 50]}
851 ]
852
853 config :pleroma, Pleroma.Web.WebFinger, domain: nil, update_nickname_on_user_fetch: true
854
855 config :pleroma, Pleroma.Search, module: Pleroma.Search.DatabaseSearch
856
857 config :pleroma, Pleroma.Search.Meilisearch,
858 url: "http://127.0.0.1:7700/",
859 private_key: nil,
860 initial_indexing_chunk_size: 100_000
861
862 config :pleroma, Pleroma.Search.Elasticsearch.Cluster,
863 url: "http://localhost:9200",
864 username: "elastic",
865 password: "changeme",
866 api: Elasticsearch.API.HTTP,
867 json_library: Jason,
868 indexes: %{
869 activities: %{
870 settings: "priv/es-mappings/activity.json",
871 store: Pleroma.Search.Elasticsearch.Store,
872 sources: [Pleroma.Activity],
873 bulk_page_size: 1000,
874 bulk_wait_interval: 15_000
875 }
876 }
877
878 config :pleroma, :translator,
879 enabled: false,
880 module: Pleroma.Akkoma.Translators.DeepL
881
882 config :pleroma, :deepl,
883 # either :free or :pro
884 tier: :free,
885 api_key: ""
886
887 config :pleroma, :libre_translate,
888 url: "http://127.0.0.1:5000",
889 api_key: nil
890
891 # Import environment specific config. This must remain at the bottom
892 # of this file so it overrides the configuration defined above.
893 import_config "#{Mix.env()}.exs"