Add a view for the move notification
[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: false,
70 seconds_valid: 60,
71 method: Pleroma.Captcha.Kocaptcha
72
73 config :pleroma, :hackney_pools,
74 federation: [
75 max_connections: 50,
76 timeout: 150_000
77 ],
78 media: [
79 max_connections: 50,
80 timeout: 150_000
81 ],
82 upload: [
83 max_connections: 25,
84 timeout: 300_000
85 ]
86
87 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
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, Pleroma.Uploaders.MDII,
112 cgi: "https://mdii.sakura.ne.jp/mdii-post.cgi",
113 files: "https://mdii.sakura.ne.jp"
114
115 config :pleroma, :emoji,
116 shortcode_globs: ["/emoji/custom/**/*.png"],
117 pack_extensions: [".png", ".gif"],
118 groups: [
119 # Put groups that have higher priority than defaults here. Example in `docs/config/custom_emoji.md`
120 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
121 ],
122 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
123 shared_pack_cache_seconds_per_file: 60
124
125 config :pleroma, :uri_schemes,
126 valid_schemes: [
127 "https",
128 "http",
129 "dat",
130 "dweb",
131 "gopher",
132 "ipfs",
133 "ipns",
134 "irc",
135 "ircs",
136 "magnet",
137 "mailto",
138 "mumble",
139 "ssb",
140 "xmpp"
141 ]
142
143 websocket_config = [
144 path: "/websocket",
145 serializer: [
146 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
147 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
148 ],
149 timeout: 60_000,
150 transport_log: false,
151 compress: false
152 ]
153
154 # Configures the endpoint
155 config :pleroma, Pleroma.Web.Endpoint,
156 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
157 url: [host: "localhost"],
158 http: [
159 ip: {127, 0, 0, 1},
160 dispatch: [
161 {:_,
162 [
163 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
164 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
165 {Phoenix.Transports.WebSocket,
166 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
167 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
168 ]}
169 ]
170 ],
171 protocol: "https",
172 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
173 signing_salt: "CqaoopA2",
174 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
175 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
176 secure_cookie_flag: true,
177 extra_cookie_attrs: [
178 "SameSite=Lax"
179 ]
180
181 # Configures Elixir's Logger
182 config :logger, :console,
183 format: "$time $metadata[$level] $message\n",
184 metadata: [:request_id]
185
186 config :logger, :ex_syslogger,
187 level: :debug,
188 ident: "pleroma",
189 format: "$metadata[$level] $message",
190 metadata: [:request_id]
191
192 config :quack,
193 level: :warn,
194 meta: [:all],
195 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
196
197 config :mime, :types, %{
198 "application/xml" => ["xml"],
199 "application/xrd+xml" => ["xrd+xml"],
200 "application/jrd+json" => ["jrd+json"],
201 "application/activity+json" => ["activity+json"],
202 "application/ld+json" => ["activity+json"]
203 }
204
205 config :tesla, adapter: Tesla.Adapter.Hackney
206
207 # Configures http settings, upstream proxy etc.
208 config :pleroma, :http,
209 proxy_url: nil,
210 send_user_agent: true,
211 adapter: [
212 ssl_options: [
213 # Workaround for remote server certificate chain issues
214 partial_chain: &:hackney_connect.partial_chain/1,
215 # We don't support TLS v1.3 yet
216 versions: [:tlsv1, :"tlsv1.1", :"tlsv1.2"]
217 ]
218 ]
219
220 config :pleroma, :instance,
221 name: "Pleroma",
222 email: "example@example.com",
223 notify_email: "noreply@example.com",
224 description: "A Pleroma instance, an alternative fediverse server",
225 limit: 5_000,
226 remote_limit: 100_000,
227 upload_limit: 16_000_000,
228 avatar_upload_limit: 2_000_000,
229 background_upload_limit: 4_000_000,
230 banner_upload_limit: 4_000_000,
231 poll_limits: %{
232 max_options: 20,
233 max_option_chars: 200,
234 min_expiration: 0,
235 max_expiration: 365 * 24 * 60 * 60
236 },
237 registrations_open: true,
238 federating: true,
239 federation_incoming_replies_max_depth: 100,
240 federation_reachability_timeout_days: 7,
241 federation_publisher_modules: [
242 Pleroma.Web.ActivityPub.Publisher
243 ],
244 allow_relay: true,
245 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
246 public: true,
247 quarantined_instances: [],
248 managed_config: true,
249 static_dir: "instance/static/",
250 allowed_post_formats: [
251 "text/plain",
252 "text/html",
253 "text/markdown",
254 "text/bbcode"
255 ],
256 mrf_transparency: true,
257 mrf_transparency_exclusions: [],
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, :rich_media,
385 enabled: true,
386 ignore_hosts: [],
387 ignore_tld: ["local", "localdomain", "lan"],
388 parsers: [
389 Pleroma.Web.RichMedia.Parsers.TwitterCard,
390 Pleroma.Web.RichMedia.Parsers.OGP,
391 Pleroma.Web.RichMedia.Parsers.OEmbed
392 ],
393 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
394
395 config :pleroma, :media_proxy,
396 enabled: false,
397 proxy_opts: [
398 redirect_on_failure: false,
399 max_body_length: 25 * 1_048_576,
400 http: [
401 follow_redirect: true,
402 pool: :media
403 ]
404 ],
405 whitelist: []
406
407 config :pleroma, :chat, enabled: true
408
409 config :phoenix, :format_encoders, json: Jason
410
411 config :phoenix, :json_library, Jason
412
413 config :pleroma, :gopher,
414 enabled: false,
415 ip: {0, 0, 0, 0},
416 port: 9999
417
418 config :pleroma, Pleroma.Web.Metadata,
419 providers: [
420 Pleroma.Web.Metadata.Providers.OpenGraph,
421 Pleroma.Web.Metadata.Providers.TwitterCard,
422 Pleroma.Web.Metadata.Providers.RelMe,
423 Pleroma.Web.Metadata.Providers.Feed
424 ],
425 unfurl_nsfw: false
426
427 config :pleroma, :suggestions,
428 enabled: false,
429 third_party_engine:
430 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
431 timeout: 300_000,
432 limit: 40,
433 web: "https://vinayaka.distsn.org"
434
435 config :pleroma, :http_security,
436 enabled: true,
437 sts: false,
438 sts_max_age: 31_536_000,
439 ct_max_age: 2_592_000,
440 referrer_policy: "same-origin"
441
442 config :cors_plug,
443 max_age: 86_400,
444 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
445 expose: [
446 "Link",
447 "X-RateLimit-Reset",
448 "X-RateLimit-Limit",
449 "X-RateLimit-Remaining",
450 "X-Request-Id",
451 "Idempotency-Key"
452 ],
453 credentials: true,
454 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
455
456 config :pleroma, Pleroma.User,
457 restricted_nicknames: [
458 ".well-known",
459 "~",
460 "about",
461 "activities",
462 "api",
463 "auth",
464 "check_password",
465 "dev",
466 "friend-requests",
467 "inbox",
468 "internal",
469 "main",
470 "media",
471 "nodeinfo",
472 "notice",
473 "oauth",
474 "objects",
475 "ostatus_subscribe",
476 "pleroma",
477 "proxy",
478 "push",
479 "registration",
480 "relay",
481 "settings",
482 "status",
483 "tag",
484 "user-search",
485 "user_exists",
486 "users",
487 "web"
488 ]
489
490 config :pleroma, Oban,
491 repo: Pleroma.Repo,
492 verbose: false,
493 prune: {:maxlen, 1500},
494 queues: [
495 activity_expiration: 10,
496 federator_incoming: 50,
497 federator_outgoing: 50,
498 web_push: 50,
499 mailer: 10,
500 transmogrifier: 20,
501 scheduled_activities: 10,
502 background: 5
503 ]
504
505 config :pleroma, :workers,
506 retries: [
507 federator_incoming: 5,
508 federator_outgoing: 5
509 ]
510
511 config :pleroma, :fetch_initial_posts,
512 enabled: false,
513 pages: 5
514
515 config :auto_linker,
516 opts: [
517 scheme: true,
518 extra: true,
519 # TODO: Set to :no_scheme when it works properly
520 validate_tld: true,
521 class: false,
522 strip_prefix: false,
523 new_window: false,
524 rel: "ugc"
525 ]
526
527 config :pleroma, :ldap,
528 enabled: System.get_env("LDAP_ENABLED") == "true",
529 host: System.get_env("LDAP_HOST") || "localhost",
530 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
531 ssl: System.get_env("LDAP_SSL") == "true",
532 sslopts: [],
533 tls: System.get_env("LDAP_TLS") == "true",
534 tlsopts: [],
535 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
536 uid: System.get_env("LDAP_UID") || "cn"
537
538 config :esshd,
539 enabled: false
540
541 oauth_consumer_strategies =
542 System.get_env("OAUTH_CONSUMER_STRATEGIES")
543 |> to_string()
544 |> String.split()
545 |> Enum.map(&hd(String.split(&1, ":")))
546
547 ueberauth_providers =
548 for strategy <- oauth_consumer_strategies do
549 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
550 strategy_module = String.to_atom(strategy_module_name)
551 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
552 end
553
554 config :ueberauth,
555 Ueberauth,
556 base_path: "/oauth",
557 providers: ueberauth_providers
558
559 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
560
561 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
562
563 config :pleroma, Pleroma.Emails.UserEmail,
564 logo: nil,
565 styling: %{
566 link_color: "#d8a070",
567 background_color: "#2C3645",
568 content_background_color: "#1B2635",
569 header_color: "#d8a070",
570 text_color: "#b9b9ba",
571 text_muted_color: "#b9b9ba"
572 }
573
574 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
575
576 config :pleroma, Pleroma.ScheduledActivity,
577 daily_user_limit: 25,
578 total_user_limit: 300,
579 enabled: true
580
581 config :pleroma, :email_notifications,
582 digest: %{
583 active: false,
584 schedule: "0 0 * * 0",
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 clean_expired_tokens_interval: 86_400_000
594
595 config :pleroma, :database, rum_enabled: false
596
597 config :pleroma, :env, Mix.env()
598
599 config :http_signatures,
600 adapter: Pleroma.Signature
601
602 config :pleroma, :rate_limit, authentication: {60_000, 15}
603
604 config :pleroma, Pleroma.ActivityExpiration, enabled: true
605
606 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: false
607
608 config :pleroma, :static_fe, enabled: false
609
610 config :pleroma, :web_cache_ttl,
611 activity_pub: nil,
612 activity_pub_question: 30_000
613
614 config :swarm, node_blacklist: [~r/myhtml_.*$/]
615 # Import environment specific config. This must remain at the bottom
616 # of this file so it overrides the configuration defined above.
617 import_config "#{Mix.env()}.exs"