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