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