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