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