fcad55bbedd43c5244f8b972aa8086eada8e82db
[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
53 config :pleroma, Pleroma.Captcha,
54 enabled: false,
55 seconds_valid: 60,
56 method: Pleroma.Captcha.Kocaptcha
57
58 config :pleroma, :hackney_pools,
59 federation: [
60 max_connections: 50,
61 timeout: 150_000
62 ],
63 media: [
64 max_connections: 50,
65 timeout: 150_000
66 ],
67 upload: [
68 max_connections: 25,
69 timeout: 300_000
70 ]
71
72 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
73
74 # Upload configuration
75 config :pleroma, Pleroma.Upload,
76 uploader: Pleroma.Uploaders.Local,
77 filters: [Pleroma.Upload.Filter.Dedupe],
78 link_name: true,
79 proxy_remote: false,
80 proxy_opts: [
81 redirect_on_failure: false,
82 max_body_length: 25 * 1_048_576,
83 http: [
84 follow_redirect: true,
85 pool: :upload
86 ]
87 ]
88
89 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
90
91 config :pleroma, Pleroma.Uploaders.S3,
92 bucket: nil,
93 public_endpoint: "https://s3.amazonaws.com"
94
95 config :pleroma, Pleroma.Uploaders.MDII,
96 cgi: "https://mdii.sakura.ne.jp/mdii-post.cgi",
97 files: "https://mdii.sakura.ne.jp"
98
99 config :pleroma, :emoji,
100 shortcode_globs: ["/emoji/custom/**/*.png"],
101 groups: [
102 # Put groups that have higher priority than defaults here. Example in `docs/config/custom_emoji.md`
103 Finmoji: ["/finmoji/128px/*-128.png"],
104 Custom: ["/emoji/*.png", "/emoji/custom/*.png"]
105 ],
106 default_manifest: "https://git.pleroma.social/vaartis/emoji-index/raw/master/index.json"
107
108 config :pleroma, :uri_schemes,
109 valid_schemes: [
110 "https",
111 "http",
112 "dat",
113 "dweb",
114 "gopher",
115 "ipfs",
116 "ipns",
117 "irc",
118 "ircs",
119 "magnet",
120 "mailto",
121 "mumble",
122 "ssb",
123 "xmpp"
124 ]
125
126 websocket_config = [
127 path: "/websocket",
128 serializer: [
129 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
130 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
131 ],
132 timeout: 60_000,
133 transport_log: false,
134 compress: false
135 ]
136
137 # Configures the endpoint
138 config :pleroma, Pleroma.Web.Endpoint,
139 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
140 url: [host: "localhost"],
141 http: [
142 dispatch: [
143 {:_,
144 [
145 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
146 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
147 {Phoenix.Transports.WebSocket,
148 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
149 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
150 ]}
151 ]
152 ],
153 protocol: "https",
154 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
155 signing_salt: "CqaoopA2",
156 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
157 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
158 secure_cookie_flag: true,
159 extra_cookie_attrs: [
160 "SameSite=Lax"
161 ]
162
163 # Configures Elixir's Logger
164 config :logger, :console,
165 format: "$time $metadata[$level] $message\n",
166 metadata: [:request_id]
167
168 config :logger, :ex_syslogger,
169 level: :debug,
170 ident: "Pleroma",
171 format: "$metadata[$level] $message",
172 metadata: [:request_id]
173
174 config :quack,
175 level: :warn,
176 meta: [:all],
177 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
178
179 config :mime, :types, %{
180 "application/xml" => ["xml"],
181 "application/xrd+xml" => ["xrd+xml"],
182 "application/jrd+json" => ["jrd+json"],
183 "application/activity+json" => ["activity+json"],
184 "application/ld+json" => ["activity+json"]
185 }
186
187 config :pleroma, :websub, Pleroma.Web.Websub
188 config :pleroma, :ostatus, Pleroma.Web.OStatus
189 config :pleroma, :httpoison, Pleroma.HTTP
190 config :tesla, adapter: Tesla.Adapter.Hackney
191
192 # Configures http settings, upstream proxy etc.
193 config :pleroma, :http,
194 proxy_url: nil,
195 adapter: [
196 ssl_options: [
197 # We don't support TLS v1.3 yet
198 versions: [:tlsv1, :"tlsv1.1", :"tlsv1.2"]
199 ]
200 ]
201
202 config :pleroma, :instance,
203 name: "Pleroma",
204 email: "example@example.com",
205 notify_email: "noreply@example.com",
206 description: "A Pleroma instance, an alternative fediverse server",
207 limit: 5_000,
208 remote_limit: 100_000,
209 upload_limit: 16_000_000,
210 avatar_upload_limit: 2_000_000,
211 background_upload_limit: 4_000_000,
212 banner_upload_limit: 4_000_000,
213 registrations_open: true,
214 federating: true,
215 federation_reachability_timeout_days: 7,
216 allow_relay: true,
217 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
218 public: true,
219 quarantined_instances: [],
220 managed_config: true,
221 static_dir: "instance/static/",
222 allowed_post_formats: [
223 "text/plain",
224 "text/html",
225 "text/markdown"
226 ],
227 finmoji_enabled: true,
228 mrf_transparency: true,
229 autofollowed_nicknames: [],
230 max_pinned_statuses: 1,
231 no_attachment_links: false,
232 welcome_user_nickname: nil,
233 welcome_message: nil,
234 max_report_comment_size: 1000,
235 safe_dm_mentions: false
236
237 config :pleroma, :markup,
238 # XXX - unfortunately, inline images must be enabled by default right now, because
239 # of custom emoji. Issue #275 discusses defanging that somehow.
240 allow_inline_images: true,
241 allow_headings: false,
242 allow_tables: false,
243 allow_fonts: false,
244 scrub_policy: [
245 Pleroma.HTML.Transform.MediaProxy,
246 Pleroma.HTML.Scrubber.Default
247 ]
248
249 # Deprecated, will be gone in 1.0
250 config :pleroma, :fe,
251 theme: "pleroma-dark",
252 logo: "/static/logo.png",
253 logo_mask: true,
254 logo_margin: "0.1em",
255 background: "/static/aurora_borealis.jpg",
256 redirect_root_no_login: "/main/all",
257 redirect_root_login: "/main/friends",
258 show_instance_panel: true,
259 scope_options_enabled: false,
260 formatting_options_enabled: false,
261 collapse_message_with_subject: false,
262 hide_post_stats: false,
263 hide_user_stats: false,
264 scope_copy: true,
265 subject_line_behavior: "email",
266 always_show_subject_input: true
267
268 config :pleroma, :frontend_configurations,
269 pleroma_fe: %{
270 theme: "pleroma-dark",
271 logo: "/static/logo.png",
272 background: "/images/city.jpg",
273 redirectRootNoLogin: "/main/all",
274 redirectRootLogin: "/main/friends",
275 showInstanceSpecificPanel: true,
276 scopeOptionsEnabled: false,
277 formattingOptionsEnabled: false,
278 collapseMessageWithSubject: false,
279 hidePostStats: false,
280 hideUserStats: false,
281 scopeCopy: true,
282 subjectLineBehavior: "email",
283 alwaysShowSubjectInput: true
284 },
285 masto_fe: %{
286 showInstanceSpecificPanel: true
287 }
288
289 config :pleroma, :activitypub,
290 accept_blocks: true,
291 unfollow_blocked: true,
292 outgoing_blocks: true,
293 follow_handshake_timeout: 500
294
295 config :pleroma, :user, deny_follow_blocked: true
296
297 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
298
299 config :pleroma, :mrf_rejectnonpublic,
300 allow_followersonly: false,
301 allow_direct: false
302
303 config :pleroma, :mrf_hellthread,
304 delist_threshold: 10,
305 reject_threshold: 20
306
307 config :pleroma, :mrf_simple,
308 media_removal: [],
309 media_nsfw: [],
310 federated_timeline_removal: [],
311 reject: [],
312 accept: []
313
314 config :pleroma, :mrf_keyword,
315 reject: [],
316 federated_timeline_removal: [],
317 replace: []
318
319 config :pleroma, :rich_media, enabled: true
320
321 config :pleroma, :media_proxy,
322 enabled: false,
323 proxy_opts: [
324 redirect_on_failure: false,
325 max_body_length: 25 * 1_048_576,
326 http: [
327 follow_redirect: true,
328 pool: :media
329 ]
330 ]
331
332 config :pleroma, :chat, enabled: true
333
334 config :phoenix, :format_encoders, json: Jason
335
336 config :pleroma, :gopher,
337 enabled: false,
338 ip: {0, 0, 0, 0},
339 port: 9999
340
341 config :pleroma, Pleroma.Web.Metadata,
342 providers: [Pleroma.Web.Metadata.Providers.RelMe],
343 unfurl_nsfw: false
344
345 config :pleroma, :suggestions,
346 enabled: false,
347 third_party_engine:
348 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
349 timeout: 300_000,
350 limit: 23,
351 web: "https://vinayaka.distsn.org/?{{host}}+{{user}}"
352
353 config :pleroma, :http_security,
354 enabled: true,
355 sts: false,
356 sts_max_age: 31_536_000,
357 ct_max_age: 2_592_000,
358 referrer_policy: "same-origin"
359
360 config :cors_plug,
361 max_age: 86_400,
362 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
363 expose: [
364 "Link",
365 "X-RateLimit-Reset",
366 "X-RateLimit-Limit",
367 "X-RateLimit-Remaining",
368 "X-Request-Id",
369 "Idempotency-Key"
370 ],
371 credentials: true,
372 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
373
374 config :pleroma, Pleroma.User,
375 restricted_nicknames: [
376 ".well-known",
377 "~",
378 "about",
379 "activities",
380 "api",
381 "auth",
382 "dev",
383 "friend-requests",
384 "inbox",
385 "internal",
386 "main",
387 "media",
388 "nodeinfo",
389 "notice",
390 "oauth",
391 "objects",
392 "ostatus_subscribe",
393 "pleroma",
394 "proxy",
395 "push",
396 "registration",
397 "relay",
398 "settings",
399 "status",
400 "tag",
401 "user-search",
402 "users",
403 "web"
404 ]
405
406 config :pleroma, Pleroma.Web.Federator.RetryQueue,
407 enabled: false,
408 max_jobs: 20,
409 initial_timeout: 30,
410 max_retries: 5
411
412 config :pleroma_job_queue, :queues,
413 federator_incoming: 50,
414 federator_outgoing: 50,
415 web_push: 50,
416 mailer: 10,
417 transmogrifier: 20,
418 scheduled_activities: 10
419
420 config :pleroma, :fetch_initial_posts,
421 enabled: false,
422 pages: 5
423
424 config :auto_linker,
425 opts: [
426 scheme: true,
427 extra: true,
428 class: false,
429 strip_prefix: false,
430 new_window: false,
431 rel: false
432 ]
433
434 config :pleroma, :ldap,
435 enabled: System.get_env("LDAP_ENABLED") == "true",
436 host: System.get_env("LDAP_HOST") || "localhost",
437 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
438 ssl: System.get_env("LDAP_SSL") == "true",
439 sslopts: [],
440 tls: System.get_env("LDAP_TLS") == "true",
441 tlsopts: [],
442 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
443 uid: System.get_env("LDAP_UID") || "cn"
444
445 oauth_consumer_strategies = String.split(System.get_env("OAUTH_CONSUMER_STRATEGIES") || "")
446
447 ueberauth_providers =
448 for strategy <- oauth_consumer_strategies do
449 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
450 strategy_module = String.to_atom(strategy_module_name)
451 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
452 end
453
454 config :ueberauth,
455 Ueberauth,
456 base_path: "/oauth",
457 providers: ueberauth_providers
458
459 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
460
461 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail
462
463 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
464
465 config :pleroma, Pleroma.ScheduledActivity,
466 daily_user_limit: 25,
467 total_user_limit: 300,
468 enabled: true
469
470 # Import environment specific config. This must remain at the bottom
471 # of this file so it overrides the configuration defined above.
472 import_config "#{Mix.env()}.exs"