e9403c7c85b59e8700968b8daa0840707ca4e178
[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, :extensions, output_relationships_in_statuses_by_default: true
255
256 config :pleroma, :feed,
257 post_title: %{
258 max_length: 100,
259 omission: "..."
260 }
261
262 config :pleroma, :markup,
263 # XXX - unfortunately, inline images must be enabled by default right now, because
264 # of custom emoji. Issue #275 discusses defanging that somehow.
265 allow_inline_images: true,
266 allow_headings: false,
267 allow_tables: false,
268 allow_fonts: false,
269 scrub_policy: [
270 Pleroma.HTML.Scrubber.Default,
271 Pleroma.HTML.Transform.MediaProxy
272 ]
273
274 config :pleroma, :frontend_configurations,
275 pleroma_fe: %{
276 theme: "pleroma-dark",
277 logo: "/static/logo.png",
278 background: "/images/city.jpg",
279 redirectRootNoLogin: "/main/all",
280 redirectRootLogin: "/main/friends",
281 showInstanceSpecificPanel: true,
282 scopeOptionsEnabled: false,
283 formattingOptionsEnabled: false,
284 collapseMessageWithSubject: false,
285 hidePostStats: false,
286 hideUserStats: false,
287 scopeCopy: true,
288 subjectLineBehavior: "email",
289 alwaysShowSubjectInput: true
290 },
291 masto_fe: %{
292 showInstanceSpecificPanel: true
293 }
294
295 config :pleroma, :assets,
296 mascots: [
297 pleroma_fox_tan: %{
298 url: "/images/pleroma-fox-tan-smol.png",
299 mime_type: "image/png"
300 },
301 pleroma_fox_tan_shy: %{
302 url: "/images/pleroma-fox-tan-shy.png",
303 mime_type: "image/png"
304 }
305 ],
306 default_mascot: :pleroma_fox_tan
307
308 config :pleroma, :manifest,
309 icons: [
310 %{
311 src: "/static/logo.png",
312 type: "image/png"
313 }
314 ],
315 theme_color: "#282c37",
316 background_color: "#191b22"
317
318 config :pleroma, :activitypub,
319 unfollow_blocked: true,
320 outgoing_blocks: true,
321 follow_handshake_timeout: 500,
322 note_replies_output_limit: 5,
323 sign_object_fetches: true,
324 authorized_fetch_mode: false
325
326 config :pleroma, :streamer,
327 workers: 3,
328 overflow_workers: 2
329
330 config :pleroma, :user, deny_follow_blocked: true
331
332 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
333
334 config :pleroma, :mrf_rejectnonpublic,
335 allow_followersonly: false,
336 allow_direct: false
337
338 config :pleroma, :mrf_hellthread,
339 delist_threshold: 10,
340 reject_threshold: 20
341
342 config :pleroma, :mrf_simple,
343 media_removal: [],
344 media_nsfw: [],
345 federated_timeline_removal: [],
346 report_removal: [],
347 reject: [],
348 accept: [],
349 avatar_removal: [],
350 banner_removal: [],
351 reject_deletes: []
352
353 config :pleroma, :mrf_keyword,
354 reject: [],
355 federated_timeline_removal: [],
356 replace: []
357
358 config :pleroma, :mrf_subchain, match_actor: %{}
359
360 config :pleroma, :mrf_vocabulary,
361 accept: [],
362 reject: []
363
364 config :pleroma, :mrf_object_age,
365 threshold: 172_800,
366 actions: [:delist, :strip_followers]
367
368 config :pleroma, :rich_media,
369 enabled: true,
370 ignore_hosts: [],
371 ignore_tld: ["local", "localdomain", "lan"],
372 parsers: [
373 Pleroma.Web.RichMedia.Parsers.TwitterCard,
374 Pleroma.Web.RichMedia.Parsers.OGP,
375 Pleroma.Web.RichMedia.Parsers.OEmbed
376 ],
377 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
378
379 config :pleroma, :media_proxy,
380 enabled: false,
381 proxy_opts: [
382 redirect_on_failure: false,
383 max_body_length: 25 * 1_048_576,
384 # Note: max_read_duration defaults to Pleroma.ReverseProxy.max_read_duration_default/1
385 max_read_duration: 30_000,
386 http: [
387 follow_redirect: true,
388 pool: :media
389 ]
390 ],
391 whitelist: []
392
393 # Note: media preview proxy depends on media proxy to be enabled
394 config :pleroma, :media_preview_proxy,
395 enabled: false,
396 enable_eimp: true,
397 thumbnail_max_width: 400,
398 thumbnail_max_height: 200,
399 proxy_opts: [
400 head_request_max_read_duration: 5_000,
401 max_read_duration: 10_000
402 ]
403
404 config :pleroma, :chat, enabled: true
405
406 config :phoenix, :format_encoders, json: Jason
407
408 config :phoenix, :json_library, Jason
409
410 config :phoenix, :filter_parameters, ["password", "confirm"]
411
412 config :pleroma, :gopher,
413 enabled: false,
414 ip: {0, 0, 0, 0},
415 port: 9999
416
417 config :pleroma, Pleroma.Web.Metadata,
418 providers: [
419 Pleroma.Web.Metadata.Providers.OpenGraph,
420 Pleroma.Web.Metadata.Providers.TwitterCard,
421 Pleroma.Web.Metadata.Providers.RelMe,
422 Pleroma.Web.Metadata.Providers.Feed
423 ],
424 unfurl_nsfw: false
425
426 config :pleroma, :http_security,
427 enabled: true,
428 sts: false,
429 sts_max_age: 31_536_000,
430 ct_max_age: 2_592_000,
431 referrer_policy: "same-origin"
432
433 config :cors_plug,
434 max_age: 86_400,
435 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
436 expose: [
437 "Link",
438 "X-RateLimit-Reset",
439 "X-RateLimit-Limit",
440 "X-RateLimit-Remaining",
441 "X-Request-Id",
442 "Idempotency-Key"
443 ],
444 credentials: true,
445 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
446
447 config :pleroma, Pleroma.User,
448 restricted_nicknames: [
449 ".well-known",
450 "~",
451 "about",
452 "activities",
453 "api",
454 "auth",
455 "check_password",
456 "dev",
457 "friend-requests",
458 "inbox",
459 "internal",
460 "main",
461 "media",
462 "nodeinfo",
463 "notice",
464 "oauth",
465 "objects",
466 "ostatus_subscribe",
467 "pleroma",
468 "proxy",
469 "push",
470 "registration",
471 "relay",
472 "settings",
473 "status",
474 "tag",
475 "user-search",
476 "user_exists",
477 "users",
478 "web"
479 ]
480
481 config :pleroma, Oban,
482 repo: Pleroma.Repo,
483 verbose: false,
484 prune: {:maxlen, 1500},
485 queues: [
486 activity_expiration: 10,
487 federator_incoming: 50,
488 federator_outgoing: 50,
489 web_push: 50,
490 mailer: 10,
491 transmogrifier: 20,
492 scheduled_activities: 10,
493 background: 5,
494 remote_fetcher: 2,
495 attachments_cleanup: 5,
496 new_users_digest: 1
497 ],
498 crontab: [
499 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
500 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
501 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
502 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
503 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
504 ]
505
506 config :pleroma, :workers,
507 retries: [
508 federator_incoming: 5,
509 federator_outgoing: 5
510 ]
511
512 config :auto_linker,
513 opts: [
514 extra: true,
515 # TODO: Set to :no_scheme when it works properly
516 validate_tld: true,
517 class: false,
518 strip_prefix: false,
519 new_window: false,
520 rel: "ugc"
521 ]
522
523 config :pleroma, :ldap,
524 enabled: System.get_env("LDAP_ENABLED") == "true",
525 host: System.get_env("LDAP_HOST") || "localhost",
526 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
527 ssl: System.get_env("LDAP_SSL") == "true",
528 sslopts: [],
529 tls: System.get_env("LDAP_TLS") == "true",
530 tlsopts: [],
531 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
532 uid: System.get_env("LDAP_UID") || "cn"
533
534 config :esshd,
535 enabled: false
536
537 oauth_consumer_strategies =
538 System.get_env("OAUTH_CONSUMER_STRATEGIES")
539 |> to_string()
540 |> String.split()
541 |> Enum.map(&hd(String.split(&1, ":")))
542
543 ueberauth_providers =
544 for strategy <- oauth_consumer_strategies do
545 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
546 strategy_module = String.to_atom(strategy_module_name)
547 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
548 end
549
550 config :ueberauth,
551 Ueberauth,
552 base_path: "/oauth",
553 providers: ueberauth_providers
554
555 config :pleroma,
556 :auth,
557 enforce_oauth_admin_scope_usage: true,
558 oauth_consumer_strategies: oauth_consumer_strategies
559
560 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
561
562 config :pleroma, Pleroma.Emails.UserEmail,
563 logo: nil,
564 styling: %{
565 link_color: "#d8a070",
566 background_color: "#2C3645",
567 content_background_color: "#1B2635",
568 header_color: "#d8a070",
569 text_color: "#b9b9ba",
570 text_muted_color: "#b9b9ba"
571 }
572
573 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: false
574
575 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
576
577 config :pleroma, Pleroma.ScheduledActivity,
578 daily_user_limit: 25,
579 total_user_limit: 300,
580 enabled: true
581
582 config :pleroma, :email_notifications,
583 digest: %{
584 active: false,
585 interval: 7,
586 inactivity_threshold: 7
587 }
588
589 config :pleroma, :oauth2,
590 token_expires_in: 600,
591 issue_new_refresh_token: true,
592 clean_expired_tokens: false
593
594 config :pleroma, :database, rum_enabled: false
595
596 config :pleroma, :env, Mix.env()
597
598 config :http_signatures,
599 adapter: Pleroma.Signature
600
601 config :pleroma, :rate_limit,
602 authentication: {60_000, 15},
603 timeline: {500, 3},
604 search: [{1000, 10}, {1000, 30}],
605 app_account_creation: {1_800_000, 25},
606 relations_actions: {10_000, 10},
607 relation_id_action: {60_000, 2},
608 statuses_actions: {10_000, 15},
609 status_id_action: {60_000, 3},
610 password_reset: {1_800_000, 5},
611 account_confirmation_resend: {8_640_000, 5},
612 ap_routes: {60_000, 15}
613
614 config :pleroma, Pleroma.ActivityExpiration, enabled: true
615
616 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
617
618 config :pleroma, :static_fe, enabled: false
619
620 config :pleroma, :web_cache_ttl,
621 activity_pub: nil,
622 activity_pub_question: 30_000
623
624 config :pleroma, :modules, runtime_dir: "instance/modules"
625
626 config :pleroma, configurable_from_database: false
627
628 config :pleroma, Pleroma.Repo,
629 parameters: [gin_fuzzy_search_limit: "500"],
630 prepare: :unnamed
631
632 config :pleroma, :connections_pool,
633 checkin_timeout: 250,
634 max_connections: 250,
635 retry: 1,
636 retry_timeout: 1000,
637 await_up_timeout: 5_000
638
639 config :pleroma, :pools,
640 federation: [
641 size: 50,
642 max_overflow: 10,
643 timeout: 150_000
644 ],
645 media: [
646 size: 50,
647 max_overflow: 10,
648 timeout: 150_000
649 ],
650 upload: [
651 size: 25,
652 max_overflow: 5,
653 timeout: 300_000
654 ],
655 default: [
656 size: 10,
657 max_overflow: 2,
658 timeout: 10_000
659 ]
660
661 config :pleroma, :hackney_pools,
662 federation: [
663 max_connections: 50,
664 timeout: 150_000
665 ],
666 media: [
667 max_connections: 50,
668 timeout: 150_000
669 ],
670 upload: [
671 max_connections: 25,
672 timeout: 300_000
673 ]
674
675 config :pleroma, :restrict_unauthenticated,
676 timelines: %{local: false, federated: false},
677 profiles: %{local: false, remote: false},
678 activities: %{local: false, remote: false}
679
680 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
681
682 # Import environment specific config. This must remain at the bottom
683 # of this file so it overrides the configuration defined above.
684 import_config "#{Mix.env()}.exs"