Also add new sidebarRight setting
[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 use Mix.Config
45
46 # General application configuration
47 config :pleroma, ecto_repos: [Pleroma.Repo]
48
49 config :pleroma, Pleroma.Repo,
50 types: Pleroma.PostgresTypes,
51 telemetry_event: [Pleroma.Repo.Instrumenter],
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 proxy_opts: [
68 redirect_on_failure: false,
69 max_body_length: 25 * 1_048_576,
70 http: [
71 follow_redirect: true,
72 pool: :upload
73 ]
74 ]
75
76 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
77
78 config :pleroma, Pleroma.Uploaders.S3,
79 bucket: nil,
80 streaming_enabled: true,
81 public_endpoint: "https://s3.amazonaws.com"
82
83 config :pleroma, :emoji,
84 shortcode_globs: ["/emoji/custom/**/*.png"],
85 pack_extensions: [".png", ".gif"],
86 groups: [
87 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
88 ],
89 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
90 shared_pack_cache_seconds_per_file: 60
91
92 config :pleroma, :uri_schemes,
93 valid_schemes: [
94 "https",
95 "http",
96 "dat",
97 "dweb",
98 "gopher",
99 "ipfs",
100 "ipns",
101 "irc",
102 "ircs",
103 "magnet",
104 "mailto",
105 "mumble",
106 "ssb",
107 "xmpp"
108 ]
109
110 websocket_config = [
111 path: "/websocket",
112 serializer: [
113 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
114 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
115 ],
116 timeout: 60_000,
117 transport_log: false,
118 compress: false
119 ]
120
121 # Configures the endpoint
122 config :pleroma, Pleroma.Web.Endpoint,
123 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
124 url: [host: "localhost"],
125 http: [
126 ip: {127, 0, 0, 1},
127 dispatch: [
128 {:_,
129 [
130 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
131 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
132 {Phoenix.Transports.WebSocket,
133 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
134 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
135 ]}
136 ]
137 ],
138 protocol: "https",
139 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
140 signing_salt: "CqaoopA2",
141 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
142 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
143 secure_cookie_flag: true,
144 extra_cookie_attrs: [
145 "SameSite=Lax"
146 ]
147
148 # Configures Elixir's Logger
149 config :logger, :console,
150 level: :debug,
151 format: "\n$time $metadata[$level] $message\n",
152 metadata: [:request_id]
153
154 config :logger, :ex_syslogger,
155 level: :debug,
156 ident: "pleroma",
157 format: "$metadata[$level] $message",
158 metadata: [:request_id]
159
160 config :quack,
161 level: :warn,
162 meta: [:all],
163 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
164
165 config :mime, :types, %{
166 "application/xml" => ["xml"],
167 "application/xrd+xml" => ["xrd+xml"],
168 "application/jrd+json" => ["jrd+json"],
169 "application/activity+json" => ["activity+json"],
170 "application/ld+json" => ["activity+json"]
171 }
172
173 config :tesla, adapter: Tesla.Adapter.Gun
174 # Configures http settings, upstream proxy etc.
175 config :pleroma, :http,
176 proxy_url: nil,
177 send_user_agent: true,
178 user_agent: :default,
179 adapter: []
180
181 config :pleroma, :instance,
182 name: "Pleroma",
183 email: "example@example.com",
184 notify_email: "noreply@example.com",
185 description: "A Pleroma instance, an alternative fediverse server",
186 limit: 5_000,
187 chat_limit: 5_000,
188 remote_limit: 100_000,
189 upload_limit: 16_000_000,
190 avatar_upload_limit: 2_000_000,
191 background_upload_limit: 4_000_000,
192 banner_upload_limit: 4_000_000,
193 poll_limits: %{
194 max_options: 20,
195 max_option_chars: 200,
196 min_expiration: 0,
197 max_expiration: 365 * 24 * 60 * 60
198 },
199 registrations_open: true,
200 invites_enabled: false,
201 account_activation_required: false,
202 federating: true,
203 federation_incoming_replies_max_depth: 100,
204 federation_reachability_timeout_days: 7,
205 federation_publisher_modules: [
206 Pleroma.Web.ActivityPub.Publisher
207 ],
208 allow_relay: true,
209 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
210 public: true,
211 quarantined_instances: [],
212 managed_config: true,
213 static_dir: "instance/static/",
214 allowed_post_formats: [
215 "text/plain",
216 "text/html",
217 "text/markdown",
218 "text/bbcode"
219 ],
220 mrf_transparency: true,
221 mrf_transparency_exclusions: [],
222 autofollowed_nicknames: [],
223 max_pinned_statuses: 1,
224 attachment_links: false,
225 welcome_user_nickname: nil,
226 welcome_message: nil,
227 max_report_comment_size: 1000,
228 safe_dm_mentions: false,
229 healthcheck: false,
230 remote_post_retention_days: 90,
231 skip_thread_containment: true,
232 limit_to_local_content: :unauthenticated,
233 user_bio_length: 5000,
234 user_name_length: 100,
235 max_account_fields: 10,
236 max_remote_account_fields: 20,
237 account_field_name_length: 512,
238 account_field_value_length: 2048,
239 external_user_synchronization: true,
240 extended_nickname_format: true,
241 cleanup_attachments: false,
242 multi_factor_authentication: [
243 totp: [
244 # digits 6 or 8
245 digits: 6,
246 period: 30
247 ],
248 backup_codes: [
249 number: 5,
250 length: 16
251 ]
252 ]
253
254 config :pleroma, :feed,
255 post_title: %{
256 max_length: 100,
257 omission: "..."
258 }
259
260 config :pleroma, :markup,
261 # XXX - unfortunately, inline images must be enabled by default right now, because
262 # of custom emoji. Issue #275 discusses defanging that somehow.
263 allow_inline_images: true,
264 allow_headings: false,
265 allow_tables: false,
266 allow_fonts: false,
267 scrub_policy: [
268 Pleroma.HTML.Scrubber.Default,
269 Pleroma.HTML.Transform.MediaProxy
270 ]
271
272 config :pleroma, :frontend_configurations,
273 pleroma_fe: %{
274 alwaysShowSubjectInput: true,
275 background: "/static/aurora_borealis.jpg",
276 collapseMessageWithSubject: false,
277 disableChat: false,
278 greentext: false,
279 hideFilteredStatuses: false,
280 hideMutedPosts: false,
281 hidePostStats: false,
282 hideSitename: false,
283 hideUserStats: false,
284 loginMethod: "password",
285 logo: "/static/logo.png",
286 logoMargin: ".1em",
287 logoMask: true,
288 minimalScopesMode: false,
289 noAttachmentLinks: false,
290 nsfwCensorImage: "",
291 postContentType: "text/plain",
292 redirectRootLogin: "/main/friends",
293 redirectRootNoLogin: "/main/all",
294 scopeCopy: true,
295 sidebarRight: false,
296 showFeaturesPanel: true,
297 showInstanceSpecificPanel: false,
298 subjectLineBehavior: "email",
299 theme: "pleroma-dark",
300 webPushNotifications: false
301 },
302 masto_fe: %{
303 showInstanceSpecificPanel: true
304 }
305
306 config :pleroma, :assets,
307 mascots: [
308 pleroma_fox_tan: %{
309 url: "/images/pleroma-fox-tan-smol.png",
310 mime_type: "image/png"
311 },
312 pleroma_fox_tan_shy: %{
313 url: "/images/pleroma-fox-tan-shy.png",
314 mime_type: "image/png"
315 }
316 ],
317 default_mascot: :pleroma_fox_tan
318
319 config :pleroma, :manifest,
320 icons: [
321 %{
322 src: "/static/logo.png",
323 type: "image/png"
324 }
325 ],
326 theme_color: "#282c37",
327 background_color: "#191b22"
328
329 config :pleroma, :activitypub,
330 unfollow_blocked: true,
331 outgoing_blocks: true,
332 follow_handshake_timeout: 500,
333 note_replies_output_limit: 5,
334 sign_object_fetches: true,
335 authorized_fetch_mode: false
336
337 config :pleroma, :streamer,
338 workers: 3,
339 overflow_workers: 2
340
341 config :pleroma, :user, deny_follow_blocked: true
342
343 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
344
345 config :pleroma, :mrf_rejectnonpublic,
346 allow_followersonly: false,
347 allow_direct: false
348
349 config :pleroma, :mrf_hellthread,
350 delist_threshold: 10,
351 reject_threshold: 20
352
353 config :pleroma, :mrf_simple,
354 media_removal: [],
355 media_nsfw: [],
356 federated_timeline_removal: [],
357 report_removal: [],
358 reject: [],
359 accept: [],
360 avatar_removal: [],
361 banner_removal: [],
362 reject_deletes: []
363
364 config :pleroma, :mrf_keyword,
365 reject: [],
366 federated_timeline_removal: [],
367 replace: []
368
369 config :pleroma, :mrf_subchain, match_actor: %{}
370
371 config :pleroma, :mrf_vocabulary,
372 accept: [],
373 reject: []
374
375 config :pleroma, :mrf_object_age,
376 threshold: 172_800,
377 actions: [:delist, :strip_followers]
378
379 config :pleroma, :rich_media,
380 enabled: true,
381 ignore_hosts: [],
382 ignore_tld: ["local", "localdomain", "lan"],
383 parsers: [
384 Pleroma.Web.RichMedia.Parsers.TwitterCard,
385 Pleroma.Web.RichMedia.Parsers.OGP,
386 Pleroma.Web.RichMedia.Parsers.OEmbed
387 ],
388 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
389
390 config :pleroma, :media_proxy,
391 enabled: false,
392 proxy_opts: [
393 redirect_on_failure: false,
394 max_body_length: 25 * 1_048_576,
395 http: [
396 follow_redirect: true,
397 pool: :media
398 ]
399 ],
400 whitelist: []
401
402 config :pleroma, :chat, enabled: true
403
404 config :phoenix, :format_encoders, json: Jason
405
406 config :phoenix, :json_library, Jason
407
408 config :phoenix, :filter_parameters, ["password", "confirm"]
409
410 config :pleroma, :gopher,
411 enabled: false,
412 ip: {0, 0, 0, 0},
413 port: 9999
414
415 config :pleroma, Pleroma.Web.Metadata,
416 providers: [
417 Pleroma.Web.Metadata.Providers.OpenGraph,
418 Pleroma.Web.Metadata.Providers.TwitterCard,
419 Pleroma.Web.Metadata.Providers.RelMe,
420 Pleroma.Web.Metadata.Providers.Feed
421 ],
422 unfurl_nsfw: false
423
424 config :pleroma, :http_security,
425 enabled: true,
426 sts: false,
427 sts_max_age: 31_536_000,
428 ct_max_age: 2_592_000,
429 referrer_policy: "same-origin"
430
431 config :cors_plug,
432 max_age: 86_400,
433 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
434 expose: [
435 "Link",
436 "X-RateLimit-Reset",
437 "X-RateLimit-Limit",
438 "X-RateLimit-Remaining",
439 "X-Request-Id",
440 "Idempotency-Key"
441 ],
442 credentials: true,
443 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
444
445 config :pleroma, Pleroma.User,
446 restricted_nicknames: [
447 ".well-known",
448 "~",
449 "about",
450 "activities",
451 "api",
452 "auth",
453 "check_password",
454 "dev",
455 "friend-requests",
456 "inbox",
457 "internal",
458 "main",
459 "media",
460 "nodeinfo",
461 "notice",
462 "oauth",
463 "objects",
464 "ostatus_subscribe",
465 "pleroma",
466 "proxy",
467 "push",
468 "registration",
469 "relay",
470 "settings",
471 "status",
472 "tag",
473 "user-search",
474 "user_exists",
475 "users",
476 "web"
477 ]
478
479 config :pleroma, Oban,
480 repo: Pleroma.Repo,
481 verbose: false,
482 prune: {:maxlen, 1500},
483 queues: [
484 activity_expiration: 10,
485 federator_incoming: 50,
486 federator_outgoing: 50,
487 web_push: 50,
488 mailer: 10,
489 transmogrifier: 20,
490 scheduled_activities: 10,
491 background: 5,
492 remote_fetcher: 2,
493 attachments_cleanup: 5,
494 new_users_digest: 1
495 ],
496 crontab: [
497 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
498 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
499 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
500 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
501 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
502 ]
503
504 config :pleroma, :workers,
505 retries: [
506 federator_incoming: 5,
507 federator_outgoing: 5
508 ]
509
510 config :auto_linker,
511 opts: [
512 extra: true,
513 # TODO: Set to :no_scheme when it works properly
514 validate_tld: true,
515 class: false,
516 strip_prefix: false,
517 new_window: false,
518 rel: "ugc"
519 ]
520
521 config :pleroma, :ldap,
522 enabled: System.get_env("LDAP_ENABLED") == "true",
523 host: System.get_env("LDAP_HOST") || "localhost",
524 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
525 ssl: System.get_env("LDAP_SSL") == "true",
526 sslopts: [],
527 tls: System.get_env("LDAP_TLS") == "true",
528 tlsopts: [],
529 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
530 uid: System.get_env("LDAP_UID") || "cn"
531
532 config :esshd,
533 enabled: false
534
535 oauth_consumer_strategies =
536 System.get_env("OAUTH_CONSUMER_STRATEGIES")
537 |> to_string()
538 |> String.split()
539 |> Enum.map(&hd(String.split(&1, ":")))
540
541 ueberauth_providers =
542 for strategy <- oauth_consumer_strategies do
543 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
544 strategy_module = String.to_atom(strategy_module_name)
545 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
546 end
547
548 config :ueberauth,
549 Ueberauth,
550 base_path: "/oauth",
551 providers: ueberauth_providers
552
553 config :pleroma,
554 :auth,
555 enforce_oauth_admin_scope_usage: true,
556 oauth_consumer_strategies: oauth_consumer_strategies
557
558 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
559
560 config :pleroma, Pleroma.Emails.UserEmail,
561 logo: nil,
562 styling: %{
563 link_color: "#d8a070",
564 background_color: "#2C3645",
565 content_background_color: "#1B2635",
566 header_color: "#d8a070",
567 text_color: "#b9b9ba",
568 text_muted_color: "#b9b9ba"
569 }
570
571 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
572
573 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
574
575 config :pleroma, Pleroma.ScheduledActivity,
576 daily_user_limit: 25,
577 total_user_limit: 300,
578 enabled: true
579
580 config :pleroma, :email_notifications,
581 digest: %{
582 active: false,
583 interval: 7,
584 inactivity_threshold: 7
585 }
586
587 config :pleroma, :oauth2,
588 token_expires_in: 600,
589 issue_new_refresh_token: true,
590 clean_expired_tokens: false
591
592 config :pleroma, :database, rum_enabled: false
593
594 config :pleroma, :env, Mix.env()
595
596 config :http_signatures,
597 adapter: Pleroma.Signature
598
599 config :pleroma, :rate_limit,
600 authentication: {60_000, 15},
601 timeline: {500, 3},
602 search: [{1000, 10}, {1000, 30}],
603 app_account_creation: {1_800_000, 25},
604 relations_actions: {10_000, 10},
605 relation_id_action: {60_000, 2},
606 statuses_actions: {10_000, 15},
607 status_id_action: {60_000, 3},
608 password_reset: {1_800_000, 5},
609 account_confirmation_resend: {8_640_000, 5},
610 ap_routes: {60_000, 15}
611
612 config :pleroma, Pleroma.ActivityExpiration, enabled: true
613
614 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
615
616 config :pleroma, :static_fe, enabled: false
617
618 config :pleroma, :web_cache_ttl,
619 activity_pub: nil,
620 activity_pub_question: 30_000
621
622 config :pleroma, :modules, runtime_dir: "instance/modules"
623
624 config :pleroma, configurable_from_database: false
625
626 config :pleroma, Pleroma.Repo,
627 parameters: [gin_fuzzy_search_limit: "500"],
628 prepare: :unnamed
629
630 config :pleroma, :connections_pool,
631 checkin_timeout: 250,
632 max_connections: 250,
633 retry: 1,
634 retry_timeout: 1000,
635 await_up_timeout: 5_000
636
637 config :pleroma, :pools,
638 federation: [
639 size: 50,
640 max_overflow: 10,
641 timeout: 150_000
642 ],
643 media: [
644 size: 50,
645 max_overflow: 10,
646 timeout: 150_000
647 ],
648 upload: [
649 size: 25,
650 max_overflow: 5,
651 timeout: 300_000
652 ],
653 default: [
654 size: 10,
655 max_overflow: 2,
656 timeout: 10_000
657 ]
658
659 config :pleroma, :hackney_pools,
660 federation: [
661 max_connections: 50,
662 timeout: 150_000
663 ],
664 media: [
665 max_connections: 50,
666 timeout: 150_000
667 ],
668 upload: [
669 max_connections: 25,
670 timeout: 300_000
671 ]
672
673 config :pleroma, :restrict_unauthenticated,
674 timelines: %{local: false, federated: false},
675 profiles: %{local: false, remote: false},
676 activities: %{local: false, remote: false}
677
678 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
679
680 # Import environment specific config. This must remain at the bottom
681 # of this file so it overrides the configuration defined above.
682 import_config "#{Mix.env()}.exs"