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, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
75 config :pleroma, :hackney_pools,
89 # Upload configuration
90 config :pleroma, Pleroma.Upload,
91 uploader: Pleroma.Uploaders.Local,
92 filters: [Pleroma.Upload.Filter.Dedupe],
96 redirect_on_failure: false,
97 max_body_length: 25 * 1_048_576,
99 follow_redirect: true,
104 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
106 config :pleroma, Pleroma.Uploaders.S3,
108 streaming_enabled: true,
109 public_endpoint: "https://s3.amazonaws.com"
111 config :pleroma, :emoji,
112 shortcode_globs: ["/emoji/custom/**/*.png"],
113 pack_extensions: [".png", ".gif"],
115 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
117 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
118 shared_pack_cache_seconds_per_file: 60
120 config :pleroma, :uri_schemes,
141 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
142 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
145 transport_log: false,
149 # Configures the endpoint
150 config :pleroma, Pleroma.Web.Endpoint,
151 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
152 url: [host: "localhost"],
158 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
159 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
160 {Phoenix.Transports.WebSocket,
161 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
162 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
167 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
168 signing_salt: "CqaoopA2",
169 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
170 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
171 secure_cookie_flag: true,
172 extra_cookie_attrs: [
176 # Configures Elixir's Logger
177 config :logger, :console,
179 format: "\n$time $metadata[$level] $message\n",
180 metadata: [:request_id]
182 config :logger, :ex_syslogger,
185 format: "$metadata[$level] $message",
186 metadata: [:request_id]
191 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
193 config :mime, :types, %{
194 "application/xml" => ["xml"],
195 "application/xrd+xml" => ["xrd+xml"],
196 "application/jrd+json" => ["jrd+json"],
197 "application/activity+json" => ["activity+json"],
198 "application/ld+json" => ["activity+json"]
201 config :tesla, adapter: Tesla.Adapter.Hackney
203 # Configures http settings, upstream proxy etc.
204 config :pleroma, :http,
206 send_user_agent: true,
207 user_agent: :default,
210 # Workaround for remote server certificate chain issues
211 partial_chain: &:hackney_connect.partial_chain/1,
212 # We don't support TLS v1.3 yet
213 versions: [:tlsv1, :"tlsv1.1", :"tlsv1.2"]
217 config :pleroma, :instance,
219 email: "example@example.com",
220 notify_email: "noreply@example.com",
221 description: "A Pleroma instance, an alternative fediverse server",
224 remote_limit: 100_000,
225 upload_limit: 16_000_000,
226 avatar_upload_limit: 2_000_000,
227 background_upload_limit: 4_000_000,
228 banner_upload_limit: 4_000_000,
231 max_option_chars: 200,
233 max_expiration: 365 * 24 * 60 * 60
235 registrations_open: true,
237 federation_incoming_replies_max_depth: 100,
238 federation_reachability_timeout_days: 7,
239 federation_publisher_modules: [
240 Pleroma.Web.ActivityPub.Publisher
243 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
245 quarantined_instances: [],
246 managed_config: true,
247 static_dir: "instance/static/",
248 allowed_post_formats: [
254 mrf_transparency: true,
255 mrf_transparency_exclusions: [],
256 autofollowed_nicknames: [],
257 max_pinned_statuses: 1,
258 no_attachment_links: true,
259 welcome_user_nickname: nil,
260 welcome_message: nil,
261 max_report_comment_size: 1000,
262 safe_dm_mentions: false,
264 remote_post_retention_days: 90,
265 skip_thread_containment: true,
266 limit_to_local_content: :unauthenticated,
267 user_bio_length: 5000,
268 user_name_length: 100,
269 max_account_fields: 10,
270 max_remote_account_fields: 20,
271 account_field_name_length: 512,
272 account_field_value_length: 2048,
273 external_user_synchronization: true,
274 extended_nickname_format: true
276 config :pleroma, :feed,
282 config :pleroma, :markup,
283 # XXX - unfortunately, inline images must be enabled by default right now, because
284 # of custom emoji. Issue #275 discusses defanging that somehow.
285 allow_inline_images: true,
286 allow_headings: false,
290 Pleroma.HTML.Scrubber.Default,
291 Pleroma.HTML.Transform.MediaProxy
294 config :pleroma, :frontend_configurations,
296 theme: "pleroma-dark",
297 logo: "/static/logo.png",
298 background: "/images/city.jpg",
299 redirectRootNoLogin: "/main/all",
300 redirectRootLogin: "/main/friends",
301 showInstanceSpecificPanel: true,
302 scopeOptionsEnabled: false,
303 formattingOptionsEnabled: false,
304 collapseMessageWithSubject: false,
305 hidePostStats: false,
306 hideUserStats: false,
308 subjectLineBehavior: "email",
309 alwaysShowSubjectInput: true
312 showInstanceSpecificPanel: true
315 config :pleroma, :assets,
318 url: "/images/pleroma-fox-tan-smol.png",
319 mime_type: "image/png"
321 pleroma_fox_tan_shy: %{
322 url: "/images/pleroma-fox-tan-shy.png",
323 mime_type: "image/png"
326 default_mascot: :pleroma_fox_tan
328 config :pleroma, :manifest,
331 src: "/static/logo.png",
335 theme_color: "#282c37",
336 background_color: "#191b22"
338 config :pleroma, :activitypub,
339 unfollow_blocked: true,
340 outgoing_blocks: true,
341 follow_handshake_timeout: 500,
342 sign_object_fetches: true
344 config :pleroma, :streamer,
348 config :pleroma, :user, deny_follow_blocked: true
350 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
352 config :pleroma, :mrf_rejectnonpublic,
353 allow_followersonly: false,
356 config :pleroma, :mrf_hellthread,
357 delist_threshold: 10,
360 config :pleroma, :mrf_simple,
363 federated_timeline_removal: [],
370 config :pleroma, :mrf_keyword,
372 federated_timeline_removal: [],
375 config :pleroma, :mrf_subchain, match_actor: %{}
377 config :pleroma, :mrf_vocabulary,
381 config :pleroma, :mrf_object_age,
383 actions: [:delist, :strip_followers]
385 config :pleroma, :rich_media,
388 ignore_tld: ["local", "localdomain", "lan"],
390 Pleroma.Web.RichMedia.Parsers.TwitterCard,
391 Pleroma.Web.RichMedia.Parsers.OGP,
392 Pleroma.Web.RichMedia.Parsers.OEmbed
394 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
396 config :pleroma, :media_proxy,
399 redirect_on_failure: false,
400 max_body_length: 25 * 1_048_576,
402 follow_redirect: true,
408 config :pleroma, :chat, enabled: true
410 config :phoenix, :format_encoders, json: Jason
412 config :phoenix, :json_library, Jason
414 config :pleroma, :gopher,
419 config :pleroma, Pleroma.Web.Metadata,
421 Pleroma.Web.Metadata.Providers.OpenGraph,
422 Pleroma.Web.Metadata.Providers.TwitterCard,
423 Pleroma.Web.Metadata.Providers.RelMe,
424 Pleroma.Web.Metadata.Providers.Feed
428 config :pleroma, :suggestions,
431 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
434 web: "https://vinayaka.distsn.org"
436 config :pleroma, :http_security,
439 sts_max_age: 31_536_000,
440 ct_max_age: 2_592_000,
441 referrer_policy: "same-origin"
445 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
450 "X-RateLimit-Remaining",
455 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
457 config :pleroma, Pleroma.User,
458 restricted_nicknames: [
491 config :pleroma, Oban,
494 prune: {:maxlen, 1500},
496 activity_expiration: 10,
497 federator_incoming: 50,
498 federator_outgoing: 50,
502 scheduled_activities: 10,
506 config :pleroma, :workers,
508 federator_incoming: 5,
509 federator_outgoing: 5
512 config :pleroma, :fetch_initial_posts,
520 # TODO: Set to :no_scheme when it works properly
528 config :pleroma, :ldap,
529 enabled: System.get_env("LDAP_ENABLED") == "true",
530 host: System.get_env("LDAP_HOST") || "localhost",
531 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
532 ssl: System.get_env("LDAP_SSL") == "true",
534 tls: System.get_env("LDAP_TLS") == "true",
536 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
537 uid: System.get_env("LDAP_UID") || "cn"
542 oauth_consumer_strategies =
543 System.get_env("OAUTH_CONSUMER_STRATEGIES")
546 |> Enum.map(&hd(String.split(&1, ":")))
548 ueberauth_providers =
549 for strategy <- oauth_consumer_strategies do
550 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
551 strategy_module = String.to_atom(strategy_module_name)
552 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
558 providers: ueberauth_providers
562 enforce_oauth_admin_scope_usage: true,
563 oauth_consumer_strategies: oauth_consumer_strategies
565 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
567 config :pleroma, Pleroma.Emails.UserEmail,
570 link_color: "#d8a070",
571 background_color: "#2C3645",
572 content_background_color: "#1B2635",
573 header_color: "#d8a070",
574 text_color: "#b9b9ba",
575 text_muted_color: "#b9b9ba"
578 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
580 config :pleroma, Pleroma.ScheduledActivity,
581 daily_user_limit: 25,
582 total_user_limit: 300,
585 config :pleroma, :email_notifications,
588 schedule: "0 0 * * 0",
590 inactivity_threshold: 7
593 config :pleroma, :oauth2,
594 token_expires_in: 600,
595 issue_new_refresh_token: true,
596 clean_expired_tokens: false,
597 clean_expired_tokens_interval: 86_400_000
599 config :pleroma, :database, rum_enabled: false
601 config :pleroma, :env, Mix.env()
603 config :http_signatures,
604 adapter: Pleroma.Signature
606 config :pleroma, :rate_limit, authentication: {60_000, 15}
608 config :pleroma, Pleroma.ActivityExpiration, enabled: true
610 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: false
612 config :pleroma, :static_fe, enabled: false
614 config :pleroma, :web_cache_ttl,
616 activity_pub_question: 30_000
618 config :pleroma, :modules, runtime_dir: "instance/modules"
620 config :pleroma, configurable_from_database: false
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"