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