103361b297373e3f5f397d00d54ced636e95c633
[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, 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 level: :debug,
184 format: "\n$time $metadata[$level] $message\n",
185 metadata: [:request_id]
186
187 config :logger, :ex_syslogger,
188 level: :debug,
189 ident: "pleroma",
190 format: "$metadata[$level] $message",
191 metadata: [:request_id]
192
193 config :quack,
194 level: :warn,
195 meta: [:all],
196 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
197
198 config :mime, :types, %{
199 "application/xml" => ["xml"],
200 "application/xrd+xml" => ["xrd+xml"],
201 "application/jrd+json" => ["jrd+json"],
202 "application/activity+json" => ["activity+json"],
203 "application/ld+json" => ["activity+json"]
204 }
205
206 config :tesla, adapter: Tesla.Adapter.Hackney
207
208 # Configures http settings, upstream proxy etc.
209 config :pleroma, :http,
210 proxy_url: nil,
211 send_user_agent: true,
212 user_agent: :default,
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 chat_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 ],
247 allow_relay: true,
248 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
249 public: true,
250 quarantined_instances: [],
251 managed_config: true,
252 static_dir: "instance/static/",
253 allowed_post_formats: [
254 "text/plain",
255 "text/html",
256 "text/markdown",
257 "text/bbcode"
258 ],
259 mrf_transparency: true,
260 mrf_transparency_exclusions: [],
261 autofollowed_nicknames: [],
262 max_pinned_statuses: 1,
263 no_attachment_links: true,
264 welcome_user_nickname: nil,
265 welcome_message: nil,
266 max_report_comment_size: 1000,
267 safe_dm_mentions: false,
268 healthcheck: false,
269 remote_post_retention_days: 90,
270 skip_thread_containment: true,
271 limit_to_local_content: :unauthenticated,
272 dynamic_configuration: false,
273 user_bio_length: 5000,
274 user_name_length: 100,
275 max_account_fields: 10,
276 max_remote_account_fields: 20,
277 account_field_name_length: 512,
278 account_field_value_length: 2048,
279 external_user_synchronization: true,
280 extended_nickname_format: true
281
282 config :pleroma, :feed,
283 post_title: %{
284 max_length: 100,
285 omission: "..."
286 }
287
288 config :pleroma, :markup,
289 # XXX - unfortunately, inline images must be enabled by default right now, because
290 # of custom emoji. Issue #275 discusses defanging that somehow.
291 allow_inline_images: true,
292 allow_headings: false,
293 allow_tables: false,
294 allow_fonts: false,
295 scrub_policy: [
296 Pleroma.HTML.Scrubber.Default,
297 Pleroma.HTML.Transform.MediaProxy
298 ]
299
300 config :pleroma, :frontend_configurations,
301 pleroma_fe: %{
302 theme: "pleroma-dark",
303 logo: "/static/logo.png",
304 background: "/images/city.jpg",
305 redirectRootNoLogin: "/main/all",
306 redirectRootLogin: "/main/friends",
307 showInstanceSpecificPanel: true,
308 scopeOptionsEnabled: false,
309 formattingOptionsEnabled: false,
310 collapseMessageWithSubject: false,
311 hidePostStats: false,
312 hideUserStats: false,
313 scopeCopy: true,
314 subjectLineBehavior: "email",
315 alwaysShowSubjectInput: true
316 },
317 masto_fe: %{
318 showInstanceSpecificPanel: true
319 }
320
321 config :pleroma, :assets,
322 mascots: [
323 pleroma_fox_tan: %{
324 url: "/images/pleroma-fox-tan-smol.png",
325 mime_type: "image/png"
326 },
327 pleroma_fox_tan_shy: %{
328 url: "/images/pleroma-fox-tan-shy.png",
329 mime_type: "image/png"
330 }
331 ],
332 default_mascot: :pleroma_fox_tan
333
334 config :pleroma, :manifest,
335 icons: [
336 %{
337 src: "/static/logo.png",
338 type: "image/png"
339 }
340 ],
341 theme_color: "#282c37",
342 background_color: "#191b22"
343
344 config :pleroma, :activitypub,
345 unfollow_blocked: true,
346 outgoing_blocks: true,
347 follow_handshake_timeout: 500,
348 sign_object_fetches: true
349
350 config :pleroma, :streamer,
351 workers: 3,
352 overflow_workers: 2
353
354 config :pleroma, :user, deny_follow_blocked: true
355
356 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
357
358 config :pleroma, :mrf_rejectnonpublic,
359 allow_followersonly: false,
360 allow_direct: false
361
362 config :pleroma, :mrf_hellthread,
363 delist_threshold: 10,
364 reject_threshold: 20
365
366 config :pleroma, :mrf_simple,
367 media_removal: [],
368 media_nsfw: [],
369 federated_timeline_removal: [],
370 report_removal: [],
371 reject: [],
372 accept: [],
373 avatar_removal: [],
374 banner_removal: []
375
376 config :pleroma, :mrf_keyword,
377 reject: [],
378 federated_timeline_removal: [],
379 replace: []
380
381 config :pleroma, :mrf_subchain, match_actor: %{}
382
383 config :pleroma, :mrf_vocabulary,
384 accept: [],
385 reject: []
386
387 config :pleroma, :mrf_object_age,
388 threshold: 172_800,
389 actions: [:delist, :strip_followers]
390
391 config :pleroma, :rich_media,
392 enabled: true,
393 ignore_hosts: [],
394 ignore_tld: ["local", "localdomain", "lan"],
395 parsers: [
396 Pleroma.Web.RichMedia.Parsers.TwitterCard,
397 Pleroma.Web.RichMedia.Parsers.OGP,
398 Pleroma.Web.RichMedia.Parsers.OEmbed
399 ],
400 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
401
402 config :pleroma, :media_proxy,
403 enabled: false,
404 proxy_opts: [
405 redirect_on_failure: false,
406 max_body_length: 25 * 1_048_576,
407 http: [
408 follow_redirect: true,
409 pool: :media
410 ]
411 ],
412 whitelist: []
413
414 config :pleroma, :chat, enabled: true
415
416 config :phoenix, :format_encoders, json: Jason
417
418 config :phoenix, :json_library, Jason
419
420 config :pleroma, :gopher,
421 enabled: false,
422 ip: {0, 0, 0, 0},
423 port: 9999
424
425 config :pleroma, Pleroma.Web.Metadata,
426 providers: [
427 Pleroma.Web.Metadata.Providers.OpenGraph,
428 Pleroma.Web.Metadata.Providers.TwitterCard,
429 Pleroma.Web.Metadata.Providers.RelMe,
430 Pleroma.Web.Metadata.Providers.Feed
431 ],
432 unfurl_nsfw: false
433
434 config :pleroma, :suggestions,
435 enabled: false,
436 third_party_engine:
437 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
438 timeout: 300_000,
439 limit: 40,
440 web: "https://vinayaka.distsn.org"
441
442 config :pleroma, :http_security,
443 enabled: true,
444 sts: false,
445 sts_max_age: 31_536_000,
446 ct_max_age: 2_592_000,
447 referrer_policy: "same-origin"
448
449 config :cors_plug,
450 max_age: 86_400,
451 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
452 expose: [
453 "Link",
454 "X-RateLimit-Reset",
455 "X-RateLimit-Limit",
456 "X-RateLimit-Remaining",
457 "X-Request-Id",
458 "Idempotency-Key"
459 ],
460 credentials: true,
461 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
462
463 config :pleroma, Pleroma.User,
464 restricted_nicknames: [
465 ".well-known",
466 "~",
467 "about",
468 "activities",
469 "api",
470 "auth",
471 "check_password",
472 "dev",
473 "friend-requests",
474 "inbox",
475 "internal",
476 "main",
477 "media",
478 "nodeinfo",
479 "notice",
480 "oauth",
481 "objects",
482 "ostatus_subscribe",
483 "pleroma",
484 "proxy",
485 "push",
486 "registration",
487 "relay",
488 "settings",
489 "status",
490 "tag",
491 "user-search",
492 "user_exists",
493 "users",
494 "web"
495 ]
496
497 config :pleroma, Oban,
498 repo: Pleroma.Repo,
499 verbose: false,
500 prune: {:maxlen, 1500},
501 queues: [
502 activity_expiration: 10,
503 federator_incoming: 50,
504 federator_outgoing: 50,
505 web_push: 50,
506 mailer: 10,
507 transmogrifier: 20,
508 scheduled_activities: 10,
509 background: 5
510 ]
511
512 config :pleroma, :workers,
513 retries: [
514 federator_incoming: 5,
515 federator_outgoing: 5
516 ]
517
518 config :pleroma, :fetch_initial_posts,
519 enabled: false,
520 pages: 5
521
522 config :auto_linker,
523 opts: [
524 scheme: true,
525 extra: true,
526 # TODO: Set to :no_scheme when it works properly
527 validate_tld: true,
528 class: false,
529 strip_prefix: false,
530 new_window: false,
531 rel: "ugc"
532 ]
533
534 config :pleroma, :ldap,
535 enabled: System.get_env("LDAP_ENABLED") == "true",
536 host: System.get_env("LDAP_HOST") || "localhost",
537 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
538 ssl: System.get_env("LDAP_SSL") == "true",
539 sslopts: [],
540 tls: System.get_env("LDAP_TLS") == "true",
541 tlsopts: [],
542 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
543 uid: System.get_env("LDAP_UID") || "cn"
544
545 config :esshd,
546 enabled: false
547
548 oauth_consumer_strategies =
549 System.get_env("OAUTH_CONSUMER_STRATEGIES")
550 |> to_string()
551 |> String.split()
552 |> Enum.map(&hd(String.split(&1, ":")))
553
554 ueberauth_providers =
555 for strategy <- oauth_consumer_strategies do
556 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
557 strategy_module = String.to_atom(strategy_module_name)
558 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
559 end
560
561 config :ueberauth,
562 Ueberauth,
563 base_path: "/oauth",
564 providers: ueberauth_providers
565
566 config :pleroma,
567 :auth,
568 enforce_oauth_admin_scope_usage: false,
569 oauth_consumer_strategies: oauth_consumer_strategies
570
571 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
572
573 config :pleroma, Pleroma.Emails.UserEmail,
574 logo: nil,
575 styling: %{
576 link_color: "#d8a070",
577 background_color: "#2C3645",
578 content_background_color: "#1B2635",
579 header_color: "#d8a070",
580 text_color: "#b9b9ba",
581 text_muted_color: "#b9b9ba"
582 }
583
584 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
585
586 config :pleroma, Pleroma.ScheduledActivity,
587 daily_user_limit: 25,
588 total_user_limit: 300,
589 enabled: true
590
591 config :pleroma, :email_notifications,
592 digest: %{
593 active: false,
594 schedule: "0 0 * * 0",
595 interval: 7,
596 inactivity_threshold: 7
597 }
598
599 config :pleroma, :oauth2,
600 token_expires_in: 600,
601 issue_new_refresh_token: true,
602 clean_expired_tokens: false,
603 clean_expired_tokens_interval: 86_400_000
604
605 config :pleroma, :database, rum_enabled: false
606
607 config :pleroma, :env, Mix.env()
608
609 config :http_signatures,
610 adapter: Pleroma.Signature
611
612 config :pleroma, :rate_limit, authentication: {60_000, 15}
613
614 config :pleroma, Pleroma.ActivityExpiration, enabled: true
615
616 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: false
617
618 config :pleroma, :static_fe, enabled: false
619
620 config :pleroma, :web_cache_ttl,
621 activity_pub: nil,
622 activity_pub_question: 30_000
623
624 config :pleroma, :modules, runtime_dir: "instance/modules"
625
626 config :swarm, node_blacklist: [~r/myhtml_.*$/]
627 # Import environment specific config. This must remain at the bottom
628 # of this file so it overrides the configuration defined above.
629 import_config "#{Mix.env()}.exs"