Remove hackney/gun in favour of 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 :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 pool_timeout: :timer.seconds(5),
184 receive_timeout: :timer.seconds(15),
185 proxy_url: nil,
186 user_agent: :default,
187 adapter: []
188
189 config :pleroma, :instance,
190 name: "Akkoma",
191 email: "example@example.com",
192 notify_email: "noreply@example.com",
193 description: "Akkoma: The cooler fediverse server",
194 background_image: "/images/city.jpg",
195 instance_thumbnail: "/instance/thumbnail.jpeg",
196 limit: 5_000,
197 description_limit: 5_000,
198 remote_limit: 100_000,
199 upload_limit: 16_000_000,
200 avatar_upload_limit: 2_000_000,
201 background_upload_limit: 4_000_000,
202 banner_upload_limit: 4_000_000,
203 languages: ["en"],
204 poll_limits: %{
205 max_options: 20,
206 max_option_chars: 200,
207 min_expiration: 0,
208 max_expiration: 365 * 24 * 60 * 60
209 },
210 registrations_open: true,
211 invites_enabled: false,
212 account_activation_required: false,
213 account_approval_required: false,
214 federating: true,
215 federation_incoming_replies_max_depth: 100,
216 federation_reachability_timeout_days: 7,
217 federation_publisher_modules: [
218 Pleroma.Web.ActivityPub.Publisher
219 ],
220 allow_relay: false,
221 public: true,
222 static_dir: "instance/static/",
223 allowed_post_formats: [
224 "text/plain",
225 "text/html",
226 "text/markdown",
227 "text/bbcode",
228 "text/x.misskeymarkdown"
229 ],
230 staff_transparency: [],
231 autofollowed_nicknames: [],
232 autofollowing_nicknames: [],
233 max_pinned_statuses: 1,
234 attachment_links: false,
235 max_report_comment_size: 1000,
236 safe_dm_mentions: false,
237 healthcheck: false,
238 remote_post_retention_days: 90,
239 skip_thread_containment: true,
240 limit_to_local_content: :unauthenticated,
241 user_bio_length: 5000,
242 user_name_length: 100,
243 max_account_fields: 10,
244 max_remote_account_fields: 20,
245 account_field_name_length: 512,
246 account_field_value_length: 2048,
247 registration_reason_length: 500,
248 external_user_synchronization: true,
249 extended_nickname_format: true,
250 cleanup_attachments: false,
251 multi_factor_authentication: [
252 totp: [
253 # digits 6 or 8
254 digits: 6,
255 period: 30
256 ],
257 backup_codes: [
258 number: 5,
259 length: 16
260 ]
261 ],
262 show_reactions: true,
263 password_reset_token_validity: 60 * 60 * 24,
264 profile_directory: true,
265 privileged_staff: false,
266 local_bubble: [],
267 max_frontend_settings_json_chars: 100_000
268
269 config :pleroma, :welcome,
270 direct_message: [
271 enabled: false,
272 sender_nickname: nil,
273 message: nil
274 ],
275 email: [
276 enabled: false,
277 sender: nil,
278 subject: "Welcome to <%= instance_name %>",
279 html: "Welcome to <%= instance_name %>",
280 text: "Welcome to <%= instance_name %>"
281 ]
282
283 config :pleroma, :feed,
284 post_title: %{
285 max_length: 100,
286 omission: "..."
287 }
288
289 config :pleroma, :markup,
290 # XXX - unfortunately, inline images must be enabled by default right now, because
291 # of custom emoji. Issue #275 discusses defanging that somehow.
292 allow_inline_images: true,
293 allow_headings: false,
294 allow_tables: false,
295 allow_fonts: false,
296 scrub_policy: [
297 Pleroma.HTML.Scrubber.Default,
298 Pleroma.HTML.Transform.MediaProxy
299 ]
300
301 config :pleroma, :frontend_configurations,
302 pleroma_fe: %{
303 alwaysShowSubjectInput: true,
304 background: "/images/city.jpg",
305 collapseMessageWithSubject: false,
306 disableChat: false,
307 greentext: false,
308 hideFilteredStatuses: false,
309 hideMutedPosts: false,
310 hidePostStats: false,
311 hideSitename: false,
312 hideUserStats: false,
313 loginMethod: "password",
314 logo: "/static/logo.svg",
315 logoMargin: ".1em",
316 logoMask: true,
317 noAttachmentLinks: false,
318 nsfwCensorImage: "",
319 postContentType: "text/plain",
320 redirectRootLogin: "/main/friends",
321 redirectRootNoLogin: "/main/public",
322 scopeCopy: true,
323 sidebarRight: false,
324 showFeaturesPanel: true,
325 showInstanceSpecificPanel: false,
326 subjectLineBehavior: "email",
327 theme: "pleroma-dark",
328 webPushNotifications: false,
329 conversationDisplay: "linear"
330 },
331 masto_fe: %{
332 showInstanceSpecificPanel: true
333 }
334
335 config :pleroma, :assets,
336 mascots: [
337 pleroma_fox_tan: %{
338 url: "/images/pleroma-fox-tan-smol.png",
339 mime_type: "image/png"
340 },
341 pleroma_fox_tan_shy: %{
342 url: "/images/pleroma-fox-tan-shy.png",
343 mime_type: "image/png"
344 }
345 ],
346 default_mascot: :pleroma_fox_tan
347
348 config :pleroma, :manifest,
349 icons: [
350 %{
351 src: "/static/logo.svg",
352 type: "image/svg+xml"
353 }
354 ],
355 theme_color: "#282c37",
356 background_color: "#191b22"
357
358 config :pleroma, :activitypub,
359 unfollow_blocked: true,
360 outgoing_blocks: true,
361 blockers_visible: true,
362 follow_handshake_timeout: 500,
363 note_replies_output_limit: 5,
364 sign_object_fetches: true,
365 authorized_fetch_mode: false,
366 max_collection_objects: 50
367
368 config :pleroma, :streamer,
369 workers: 3,
370 overflow_workers: 2
371
372 config :pleroma, :user, deny_follow_blocked: true
373
374 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
375
376 config :pleroma, :mrf_rejectnonpublic,
377 allow_followersonly: false,
378 allow_direct: false
379
380 config :pleroma, :mrf_hellthread,
381 delist_threshold: 10,
382 reject_threshold: 20
383
384 config :pleroma, :mrf_simple,
385 media_removal: [],
386 media_nsfw: [],
387 federated_timeline_removal: [],
388 report_removal: [],
389 reject: [],
390 followers_only: [],
391 accept: [],
392 avatar_removal: [],
393 banner_removal: [],
394 reject_deletes: [],
395 handle_threads: true
396
397 config :pleroma, :mrf_keyword,
398 reject: [],
399 federated_timeline_removal: [],
400 replace: []
401
402 config :pleroma, :mrf_hashtag,
403 sensitive: ["nsfw"],
404 reject: [],
405 federated_timeline_removal: []
406
407 config :pleroma, :mrf_subchain, match_actor: %{}
408
409 config :pleroma, :mrf_activity_expiration, days: 365
410
411 config :pleroma, :mrf_vocabulary,
412 accept: [],
413 reject: []
414
415 config :pleroma, :mrf_inline_quote, prefix: "RE"
416
417 # threshold of 7 days
418 config :pleroma, :mrf_object_age,
419 threshold: 604_800,
420 actions: [:delist, :strip_followers]
421
422 config :pleroma, :mrf_follow_bot, follower_nickname: nil
423
424 config :pleroma, :rich_media,
425 enabled: true,
426 ignore_hosts: [],
427 ignore_tld: ["local", "localdomain", "lan"],
428 parsers: [
429 Pleroma.Web.RichMedia.Parsers.TwitterCard,
430 Pleroma.Web.RichMedia.Parsers.OEmbed
431 ],
432 failure_backoff: 60_000,
433 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
434
435 config :pleroma, :media_proxy,
436 enabled: false,
437 invalidation: [
438 enabled: false,
439 provider: Pleroma.Web.MediaProxy.Invalidation.Script
440 ],
441 proxy_opts: [
442 redirect_on_failure: false,
443 max_body_length: 25 * 1_048_576,
444 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
445 max_read_duration: 30_000
446 ],
447 whitelist: []
448
449 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
450 method: :purge,
451 headers: [],
452 options: []
453
454 config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script,
455 script_path: nil,
456 url_format: nil
457
458 # Note: media preview proxy depends on media proxy to be enabled
459 config :pleroma, :media_preview_proxy,
460 enabled: false,
461 thumbnail_max_width: 600,
462 thumbnail_max_height: 600,
463 image_quality: 85,
464 min_content_length: 100 * 1024
465
466 config :pleroma, :shout,
467 enabled: true,
468 limit: 5_000
469
470 config :phoenix, :format_encoders, json: Jason, "activity+json": Jason
471
472 config :phoenix, :json_library, Jason
473
474 config :phoenix, :filter_parameters, ["password", "confirm"]
475
476 config :pleroma, Pleroma.Web.Metadata,
477 providers: [
478 Pleroma.Web.Metadata.Providers.OpenGraph,
479 Pleroma.Web.Metadata.Providers.TwitterCard
480 ],
481 unfurl_nsfw: false
482
483 config :pleroma, Pleroma.Web.Metadata.Providers.Theme, theme_color: "#593196"
484
485 config :pleroma, Pleroma.Web.Preload,
486 providers: [
487 Pleroma.Web.Preload.Providers.Instance
488 ]
489
490 config :pleroma, :http_security,
491 enabled: true,
492 sts: false,
493 sts_max_age: 63_072_000,
494 referrer_policy: "same-origin"
495
496 config :cors_plug,
497 max_age: 86_400,
498 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
499 expose: [
500 "Link",
501 "X-RateLimit-Reset",
502 "X-RateLimit-Limit",
503 "X-RateLimit-Remaining",
504 "X-Request-Id",
505 "Idempotency-Key"
506 ],
507 credentials: true,
508 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
509
510 config :pleroma, Pleroma.User,
511 restricted_nicknames: [
512 ".well-known",
513 "~",
514 "about",
515 "activities",
516 "api",
517 "auth",
518 "check_password",
519 "dev",
520 "friend-requests",
521 "inbox",
522 "internal",
523 "main",
524 "media",
525 "nodeinfo",
526 "notice",
527 "oauth",
528 "objects",
529 "ostatus_subscribe",
530 "pleroma",
531 "proxy",
532 "push",
533 "registration",
534 "relay",
535 "settings",
536 "status",
537 "tag",
538 "user-search",
539 "user_exists",
540 "users",
541 "web",
542 "verify_credentials",
543 "update_credentials",
544 "relationships",
545 "search",
546 "confirmation_resend",
547 "mfa"
548 ],
549 email_blacklist: []
550
551 config :pleroma, Oban,
552 repo: Pleroma.Repo,
553 log: false,
554 queues: [
555 activity_expiration: 10,
556 token_expiration: 5,
557 filter_expiration: 1,
558 backup: 1,
559 federator_incoming: 50,
560 federator_outgoing: 50,
561 ingestion_queue: 50,
562 web_push: 50,
563 mailer: 10,
564 transmogrifier: 20,
565 scheduled_activities: 10,
566 poll_notifications: 10,
567 background: 5,
568 remote_fetcher: 2,
569 attachments_cleanup: 1,
570 new_users_digest: 1,
571 mute_expire: 5,
572 search_indexing: 10,
573 nodeinfo_fetcher: 1,
574 database_prune: 1
575 ],
576 plugins: [
577 Oban.Plugins.Pruner,
578 {Oban.Plugins.Reindexer, schedule: "@weekly"}
579 ],
580 crontab: [
581 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
582 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker},
583 {"0 3 * * *", Pleroma.Workers.Cron.PruneDatabaseWorker}
584 ]
585
586 config :pleroma, :workers,
587 retries: [
588 federator_incoming: 5,
589 federator_outgoing: 5,
590 search_indexing: 2
591 ],
592 timeout: [
593 activity_expiration: :timer.seconds(5),
594 token_expiration: :timer.seconds(5),
595 filter_expiration: :timer.seconds(5),
596 backup: :timer.seconds(900),
597 federator_incoming: :timer.seconds(10),
598 federator_outgoing: :timer.seconds(10),
599 ingestion_queue: :timer.seconds(5),
600 web_push: :timer.seconds(5),
601 mailer: :timer.seconds(5),
602 transmogrifier: :timer.seconds(5),
603 scheduled_activities: :timer.seconds(5),
604 poll_notifications: :timer.seconds(5),
605 background: :timer.seconds(5),
606 remote_fetcher: :timer.seconds(10),
607 attachments_cleanup: :timer.seconds(900),
608 new_users_digest: :timer.seconds(10),
609 mute_expire: :timer.seconds(5),
610 search_indexing: :timer.seconds(5),
611 nodeinfo_fetcher: :timer.seconds(10),
612 database_prune: :timer.minutes(10)
613 ]
614
615 config :pleroma, Pleroma.Formatter,
616 class: false,
617 rel: "ugc",
618 new_window: false,
619 truncate: false,
620 strip_prefix: false,
621 extra: true,
622 validate_tld: :no_scheme
623
624 config :pleroma, :ldap,
625 enabled: System.get_env("LDAP_ENABLED") == "true",
626 host: System.get_env("LDAP_HOST") || "localhost",
627 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
628 ssl: System.get_env("LDAP_SSL") == "true",
629 sslopts: [],
630 tls: System.get_env("LDAP_TLS") == "true",
631 tlsopts: [],
632 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
633 uid: System.get_env("LDAP_UID") || "cn"
634
635 oauth_consumer_strategies =
636 "OAUTH_CONSUMER_STRATEGIES"
637 |> System.get_env()
638 |> to_string()
639 |> String.split()
640 |> Enum.map(&hd(String.split(&1, ":")))
641
642 ueberauth_providers =
643 for strategy <- oauth_consumer_strategies do
644 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
645 strategy_module = String.to_atom(strategy_module_name)
646 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
647 end
648
649 config :ueberauth,
650 Ueberauth,
651 base_path: "/oauth",
652 providers: ueberauth_providers
653
654 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
655
656 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
657
658 config :swoosh,
659 api_client: Swoosh.ApiClient.Finch,
660 finch_name: MyFinch
661
662 config :pleroma, Pleroma.Emails.UserEmail,
663 logo: nil,
664 styling: %{
665 link_color: "#d8a070",
666 background_color: "#2C3645",
667 content_background_color: "#1B2635",
668 header_color: "#d8a070",
669 text_color: "#b9b9ba",
670 text_muted_color: "#b9b9ba"
671 }
672
673 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
674
675 config :pleroma, Pleroma.ScheduledActivity,
676 daily_user_limit: 25,
677 total_user_limit: 300,
678 enabled: true
679
680 config :pleroma, :email_notifications,
681 digest: %{
682 active: false,
683 interval: 7,
684 inactivity_threshold: 7
685 }
686
687 config :pleroma, :oauth2,
688 token_expires_in: 3600 * 24 * 365 * 100,
689 issue_new_refresh_token: true,
690 clean_expired_tokens: false
691
692 config :pleroma, :database, rum_enabled: false
693
694 config :pleroma, :features, improved_hashtag_timeline: :auto
695
696 config :pleroma, :populate_hashtags_table, fault_rate_allowance: 0.01
697
698 config :pleroma, :env, Mix.env()
699
700 config :http_signatures,
701 adapter: Pleroma.Signature
702
703 config :pleroma, :rate_limit,
704 authentication: {60_000, 15},
705 timeline: {500, 3},
706 search: [{1000, 10}, {1000, 30}],
707 app_account_creation: {1_800_000, 25},
708 relations_actions: {10_000, 10},
709 relation_id_action: {60_000, 2},
710 statuses_actions: {10_000, 15},
711 status_id_action: {60_000, 3},
712 password_reset: {1_800_000, 5},
713 account_confirmation_resend: {8_640_000, 5},
714 ap_routes: {60_000, 15}
715
716 config :pleroma, Pleroma.Workers.PurgeExpiredActivity, enabled: true, min_lifetime: 600
717
718 config :pleroma, Pleroma.Web.Plugs.RemoteIp,
719 enabled: true,
720 headers: ["x-forwarded-for"],
721 proxies: [],
722 reserved: [
723 "127.0.0.0/8",
724 "::1/128",
725 "fc00::/7",
726 "10.0.0.0/8",
727 "172.16.0.0/12",
728 "192.168.0.0/16"
729 ]
730
731 config :pleroma, :static_fe, enabled: false
732
733 # Example of frontend configuration
734 # This example will make us serve the primary frontend from the
735 # frontends directory within your `:pleroma, :instance, static_dir`.
736 # e.g., instance/static/frontends/pleroma/develop/
737 #
738 # With no frontend configuration, the bundled files from the `static` directory will
739 # be used.
740 #
741 # config :pleroma, :frontends,
742 # primary: %{"name" => "pleroma-fe", "ref" => "develop"},
743 # admin: %{"name" => "admin-fe", "ref" => "stable"},
744 # mastodon: %{"enabled" => true, "name" => "mastodon-fe", "ref" => "develop"}
745 # available: %{...}
746
747 config :pleroma, :frontends,
748 primary: %{"name" => "pleroma-fe", "ref" => "stable"},
749 admin: %{"name" => "admin-fe", "ref" => "stable"},
750 mastodon: %{"name" => "mastodon-fe", "ref" => "akkoma"},
751 swagger: %{
752 "name" => "swagger-ui",
753 "ref" => "stable",
754 "enabled" => false
755 },
756 available: %{
757 "pleroma-fe" => %{
758 "name" => "pleroma-fe",
759 "git" => "https://akkoma.dev/AkkomaGang/pleroma-fe",
760 "build_url" =>
761 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/akkoma-fe.zip",
762 "ref" => "stable",
763 "build_dir" => "dist"
764 },
765 # Mastodon-Fe cannot be set as a primary - this is only here so we can update this seperately
766 "mastodon-fe" => %{
767 "name" => "mastodon-fe",
768 "git" => "https://akkoma.dev/AkkomaGang/masto-fe",
769 "build_url" =>
770 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/masto-fe.zip",
771 "build_dir" => "distribution",
772 "ref" => "akkoma"
773 },
774 "fedibird-fe" => %{
775 "name" => "fedibird-fe",
776 "git" => "https://akkoma.dev/AkkomaGang/fedibird-fe",
777 "build_url" =>
778 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/fedibird-fe.zip",
779 "build_dir" => "distribution",
780 "ref" => "akkoma"
781 },
782 "admin-fe" => %{
783 "name" => "admin-fe",
784 "git" => "https://akkoma.dev/AkkomaGang/admin-fe",
785 "build_url" =>
786 "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/${ref}/admin-fe.zip",
787 "ref" => "stable"
788 },
789 "soapbox-fe" => %{
790 "name" => "soapbox-fe",
791 "git" => "https://gitlab.com/soapbox-pub/soapbox",
792 "build_url" =>
793 "https://gitlab.com/soapbox-pub/soapbox/-/jobs/artifacts/${ref}/download?job=build-production",
794 "ref" => "v2.0.0",
795 "build_dir" => "static"
796 },
797 # For developers - enables a swagger frontend to view the openapi spec
798 "swagger-ui" => %{
799 "name" => "swagger-ui",
800 "git" => "https://github.com/swagger-api/swagger-ui",
801 "build_url" => "https://akkoma-updates.s3-website.fr-par.scw.cloud/frontend/swagger-ui.zip",
802 "build_dir" => "dist",
803 "ref" => "stable"
804 }
805 }
806
807 config :pleroma, :web_cache_ttl,
808 activity_pub: nil,
809 activity_pub_question: 30_000
810
811 config :pleroma, :modules, runtime_dir: "instance/modules"
812
813 config :pleroma, configurable_from_database: false
814
815 config :pleroma, Pleroma.Repo,
816 parameters: [gin_fuzzy_search_limit: "500"],
817 prepare: :unnamed
818
819 config :pleroma, :majic_pool, size: 2
820
821 private_instance? = :if_instance_is_private
822
823 config :pleroma, :restrict_unauthenticated,
824 timelines: %{local: private_instance?, federated: private_instance?},
825 profiles: %{local: private_instance?, remote: private_instance?},
826 activities: %{local: private_instance?, remote: private_instance?}
827
828 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
829
830 config :pleroma, :mrf,
831 policies: [Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy, Pleroma.Web.ActivityPub.MRF.TagPolicy],
832 transparency: true,
833 transparency_exclusions: [],
834 transparency_obfuscate_domains: []
835
836 config :ex_aws, http_client: Pleroma.HTTP.ExAws
837
838 config :web_push_encryption, http_client: Pleroma.HTTP.WebPush
839
840 config :pleroma, :instances_favicons, enabled: true
841 config :pleroma, :instances_nodeinfo, enabled: true
842
843 config :floki, :html_parser, Floki.HTMLParser.FastHtml
844
845 config :pleroma, Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator
846
847 config :pleroma, Pleroma.User.Backup,
848 purge_after_days: 30,
849 limit_days: 7,
850 dir: nil
851
852 config :pleroma, ConcurrentLimiter, [
853 {Pleroma.Web.RichMedia.Helpers, [max_running: 5, max_waiting: 5]},
854 {Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy, [max_running: 5, max_waiting: 5]},
855 {Pleroma.Search, [max_running: 30, max_waiting: 50]}
856 ]
857
858 config :pleroma, Pleroma.Web.WebFinger, domain: nil, update_nickname_on_user_fetch: true
859
860 config :pleroma, Pleroma.Search, module: Pleroma.Search.DatabaseSearch
861
862 config :pleroma, Pleroma.Search.Meilisearch,
863 url: "http://127.0.0.1:7700/",
864 private_key: nil,
865 initial_indexing_chunk_size: 100_000
866
867 config :pleroma, Pleroma.Search.Elasticsearch.Cluster,
868 url: "http://localhost:9200",
869 username: "elastic",
870 password: "changeme",
871 api: Elasticsearch.API.HTTP,
872 json_library: Jason,
873 indexes: %{
874 activities: %{
875 settings: "priv/es-mappings/activity.json",
876 store: Pleroma.Search.Elasticsearch.Store,
877 sources: [Pleroma.Activity],
878 bulk_page_size: 1000,
879 bulk_wait_interval: 15_000
880 }
881 }
882
883 config :pleroma, :translator,
884 enabled: false,
885 module: Pleroma.Akkoma.Translators.DeepL
886
887 config :pleroma, :deepl,
888 # either :free or :pro
889 tier: :free,
890 api_key: ""
891
892 config :pleroma, :libre_translate,
893 url: "http://127.0.0.1:5000",
894 api_key: nil
895
896 # Import environment specific config. This must remain at the bottom
897 # of this file so it overrides the configuration defined above.
898 import_config "#{Mix.env()}.exs"