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:
32 # izAotX7777777777777777777777777777777777777777Y7n92:
33 # .;CoIIIIIUAA666666699999ZZZZZZZZZZZZZZZZZZZZ6ov.
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).
39 # This file is responsible for configuring your application
40 # and its dependencies with the aid of the Mix.Config module.
42 # This configuration file is loaded before any dependency and
43 # is restricted to this project.
46 # General application configuration
47 config :pleroma, ecto_repos: [Pleroma.Repo]
49 config :pleroma, Pleroma.Repo,
50 types: Pleroma.PostgresTypes,
51 telemetry_event: [Pleroma.Repo.Instrumenter],
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, []}}]
62 config :pleroma, Pleroma.Scheduler,
68 config :pleroma, Pleroma.Captcha,
71 method: Pleroma.Captcha.Native
73 config :pleroma, :hackney_pools,
87 # Upload configuration
88 config :pleroma, Pleroma.Upload,
89 uploader: Pleroma.Uploaders.Local,
90 filters: [Pleroma.Upload.Filter.Dedupe],
94 redirect_on_failure: false,
95 max_body_length: 25 * 1_048_576,
97 follow_redirect: true,
102 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
104 config :pleroma, Pleroma.Uploaders.S3,
106 streaming_enabled: true,
107 public_endpoint: "https://s3.amazonaws.com"
109 config :pleroma, Pleroma.Uploaders.MDII,
110 cgi: "https://mdii.sakura.ne.jp/mdii-post.cgi",
111 files: "https://mdii.sakura.ne.jp"
113 config :pleroma, :emoji,
114 shortcode_globs: ["/emoji/custom/**/*.png"],
115 pack_extensions: [".png", ".gif"],
117 # Put groups that have higher priority than defaults here. Example in `docs/config/custom_emoji.md`
118 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
120 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
121 shared_pack_cache_seconds_per_file: 60
123 config :pleroma, :uri_schemes,
144 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
145 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
148 transport_log: false,
152 # Configures the endpoint
153 config :pleroma, Pleroma.Web.Endpoint,
154 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
155 url: [host: "localhost"],
161 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
162 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
163 {Phoenix.Transports.WebSocket,
164 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
165 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
170 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
171 signing_salt: "CqaoopA2",
172 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
173 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
174 secure_cookie_flag: true,
175 extra_cookie_attrs: [
179 # Configures Elixir's Logger
180 config :logger, :console,
182 format: "\n$time $metadata[$level] $message\n",
183 metadata: [:request_id]
185 config :logger, :ex_syslogger,
188 format: "$metadata[$level] $message",
189 metadata: [:request_id]
194 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
196 config :mime, :types, %{
197 "application/xml" => ["xml"],
198 "application/xrd+xml" => ["xrd+xml"],
199 "application/jrd+json" => ["jrd+json"],
200 "application/activity+json" => ["activity+json"],
201 "application/ld+json" => ["activity+json"]
204 config :tesla, adapter: Tesla.Adapter.Hackney
206 # Configures http settings, upstream proxy etc.
207 config :pleroma, :http,
209 send_user_agent: true,
210 user_agent: :default,
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"]
220 config :pleroma, :instance,
222 email: "example@example.com",
223 notify_email: "noreply@example.com",
224 description: "A Pleroma instance, an alternative fediverse server",
227 remote_limit: 100_000,
228 upload_limit: 16_000_000,
229 avatar_upload_limit: 2_000_000,
230 background_upload_limit: 4_000_000,
231 banner_upload_limit: 4_000_000,
234 max_option_chars: 200,
236 max_expiration: 365 * 24 * 60 * 60
238 registrations_open: true,
240 federation_incoming_replies_max_depth: 100,
241 federation_reachability_timeout_days: 7,
242 federation_publisher_modules: [
243 Pleroma.Web.ActivityPub.Publisher
246 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
248 quarantined_instances: [],
249 managed_config: true,
250 static_dir: "instance/static/",
251 allowed_post_formats: [
257 mrf_transparency: true,
258 mrf_transparency_exclusions: [],
259 autofollowed_nicknames: [],
260 max_pinned_statuses: 1,
261 no_attachment_links: true,
262 welcome_user_nickname: nil,
263 welcome_message: nil,
264 max_report_comment_size: 1000,
265 safe_dm_mentions: false,
267 remote_post_retention_days: 90,
268 skip_thread_containment: true,
269 limit_to_local_content: :unauthenticated,
270 dynamic_configuration: false,
271 user_bio_length: 5000,
272 user_name_length: 100,
273 max_account_fields: 10,
274 max_remote_account_fields: 20,
275 account_field_name_length: 512,
276 account_field_value_length: 2048,
277 external_user_synchronization: true,
278 extended_nickname_format: true
280 config :pleroma, :feed,
286 config :pleroma, :markup,
287 # XXX - unfortunately, inline images must be enabled by default right now, because
288 # of custom emoji. Issue #275 discusses defanging that somehow.
289 allow_inline_images: true,
290 allow_headings: false,
294 Pleroma.HTML.Scrubber.Default,
295 Pleroma.HTML.Transform.MediaProxy
298 config :pleroma, :frontend_configurations,
300 theme: "pleroma-dark",
301 logo: "/static/logo.png",
302 background: "/images/city.jpg",
303 redirectRootNoLogin: "/main/all",
304 redirectRootLogin: "/main/friends",
305 showInstanceSpecificPanel: true,
306 scopeOptionsEnabled: false,
307 formattingOptionsEnabled: false,
308 collapseMessageWithSubject: false,
309 hidePostStats: false,
310 hideUserStats: false,
312 subjectLineBehavior: "email",
313 alwaysShowSubjectInput: true
316 showInstanceSpecificPanel: true
319 config :pleroma, :assets,
322 url: "/images/pleroma-fox-tan-smol.png",
323 mime_type: "image/png"
325 pleroma_fox_tan_shy: %{
326 url: "/images/pleroma-fox-tan-shy.png",
327 mime_type: "image/png"
330 default_mascot: :pleroma_fox_tan
332 config :pleroma, :manifest,
335 src: "/static/logo.png",
339 theme_color: "#282c37",
340 background_color: "#191b22"
342 config :pleroma, :activitypub,
343 unfollow_blocked: true,
344 outgoing_blocks: true,
345 follow_handshake_timeout: 500,
346 sign_object_fetches: true
348 config :pleroma, :streamer,
352 config :pleroma, :user, deny_follow_blocked: true
354 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
356 config :pleroma, :mrf_rejectnonpublic,
357 allow_followersonly: false,
360 config :pleroma, :mrf_hellthread,
361 delist_threshold: 10,
364 config :pleroma, :mrf_simple,
367 federated_timeline_removal: [],
374 config :pleroma, :mrf_keyword,
376 federated_timeline_removal: [],
379 config :pleroma, :mrf_subchain, match_actor: %{}
381 config :pleroma, :mrf_vocabulary,
385 config :pleroma, :mrf_object_age,
387 actions: [:delist, :strip_followers]
389 config :pleroma, :rich_media,
392 ignore_tld: ["local", "localdomain", "lan"],
394 Pleroma.Web.RichMedia.Parsers.TwitterCard,
395 Pleroma.Web.RichMedia.Parsers.OGP,
396 Pleroma.Web.RichMedia.Parsers.OEmbed
398 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
400 config :pleroma, :media_proxy,
403 redirect_on_failure: false,
404 max_body_length: 25 * 1_048_576,
406 follow_redirect: true,
412 config :pleroma, :chat, enabled: true
414 config :phoenix, :format_encoders, json: Jason
416 config :phoenix, :json_library, Jason
418 config :pleroma, :gopher,
423 config :pleroma, Pleroma.Web.Metadata,
425 Pleroma.Web.Metadata.Providers.OpenGraph,
426 Pleroma.Web.Metadata.Providers.TwitterCard,
427 Pleroma.Web.Metadata.Providers.RelMe,
428 Pleroma.Web.Metadata.Providers.Feed
432 config :pleroma, :suggestions,
435 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
438 web: "https://vinayaka.distsn.org"
440 config :pleroma, :http_security,
443 sts_max_age: 31_536_000,
444 ct_max_age: 2_592_000,
445 referrer_policy: "same-origin"
449 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
454 "X-RateLimit-Remaining",
459 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
461 config :pleroma, Pleroma.User,
462 restricted_nicknames: [
495 config :pleroma, Oban,
498 prune: {:maxlen, 1500},
500 activity_expiration: 10,
501 federator_incoming: 50,
502 federator_outgoing: 50,
506 scheduled_activities: 10,
510 config :pleroma, :workers,
512 federator_incoming: 5,
513 federator_outgoing: 5
516 config :pleroma, :fetch_initial_posts,
524 # TODO: Set to :no_scheme when it works properly
532 config :pleroma, :ldap,
533 enabled: System.get_env("LDAP_ENABLED") == "true",
534 host: System.get_env("LDAP_HOST") || "localhost",
535 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
536 ssl: System.get_env("LDAP_SSL") == "true",
538 tls: System.get_env("LDAP_TLS") == "true",
540 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
541 uid: System.get_env("LDAP_UID") || "cn"
546 oauth_consumer_strategies =
547 System.get_env("OAUTH_CONSUMER_STRATEGIES")
550 |> Enum.map(&hd(String.split(&1, ":")))
552 ueberauth_providers =
553 for strategy <- oauth_consumer_strategies do
554 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
555 strategy_module = String.to_atom(strategy_module_name)
556 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
562 providers: ueberauth_providers
566 enforce_oauth_admin_scope_usage: false,
567 oauth_consumer_strategies: oauth_consumer_strategies
569 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
571 config :pleroma, Pleroma.Emails.UserEmail,
574 link_color: "#d8a070",
575 background_color: "#2C3645",
576 content_background_color: "#1B2635",
577 header_color: "#d8a070",
578 text_color: "#b9b9ba",
579 text_muted_color: "#b9b9ba"
582 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
584 config :pleroma, Pleroma.ScheduledActivity,
585 daily_user_limit: 25,
586 total_user_limit: 300,
589 config :pleroma, :email_notifications,
592 schedule: "0 0 * * 0",
594 inactivity_threshold: 7
597 config :pleroma, :oauth2,
598 token_expires_in: 600,
599 issue_new_refresh_token: true,
600 clean_expired_tokens: false,
601 clean_expired_tokens_interval: 86_400_000
603 config :pleroma, :database, rum_enabled: false
605 config :pleroma, :env, Mix.env()
607 config :http_signatures,
608 adapter: Pleroma.Signature
610 config :pleroma, :rate_limit, authentication: {60_000, 15}
612 config :pleroma, Pleroma.ActivityExpiration, enabled: true
614 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: false
616 config :pleroma, :static_fe, enabled: false
618 config :pleroma, :web_cache_ttl,
620 activity_pub_question: 30_000
622 config :swarm, node_blacklist: [~r/myhtml_.*$/]
623 # Import environment specific config. This must remain at the bottom
624 # of this file so it overrides the configuration defined above.
625 import_config "#{Mix.env()}.exs"