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.Kocaptcha
73 config :pleroma, :hackney_pools,
87 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
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, Pleroma.Uploaders.MDII,
112 cgi: "https://mdii.sakura.ne.jp/mdii-post.cgi",
113 files: "https://mdii.sakura.ne.jp"
115 config :pleroma, :emoji,
116 shortcode_globs: ["/emoji/custom/**/*.png"],
117 pack_extensions: [".png", ".gif"],
119 # Put groups that have higher priority than defaults here. Example in `docs/config/custom_emoji.md`
120 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
122 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
123 shared_pack_cache_seconds_per_file: 60
125 config :pleroma, :uri_schemes,
146 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
147 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
150 transport_log: false,
154 # Configures the endpoint
155 config :pleroma, Pleroma.Web.Endpoint,
156 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
157 url: [host: "localhost"],
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, []}}
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: [
181 # Configures Elixir's Logger
182 config :logger, :console,
183 format: "$time $metadata[$level] $message\n",
184 metadata: [:request_id]
186 config :logger, :ex_syslogger,
189 format: "$metadata[$level] $message",
190 metadata: [:request_id]
195 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
197 config :mime, :types, %{
198 "application/xml" => ["xml"],
199 "application/xrd+xml" => ["xrd+xml"],
200 "application/jrd+json" => ["jrd+json"],
201 "application/activity+json" => ["activity+json"],
202 "application/ld+json" => ["activity+json"]
205 config :tesla, adapter: Tesla.Adapter.Hackney
207 # Configures http settings, upstream proxy etc.
208 config :pleroma, :http,
210 send_user_agent: true,
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",
226 remote_limit: 100_000,
227 upload_limit: 16_000_000,
228 avatar_upload_limit: 2_000_000,
229 background_upload_limit: 4_000_000,
230 banner_upload_limit: 4_000_000,
233 max_option_chars: 200,
235 max_expiration: 365 * 24 * 60 * 60
237 registrations_open: true,
239 federation_incoming_replies_max_depth: 100,
240 federation_reachability_timeout_days: 7,
241 federation_publisher_modules: [
242 Pleroma.Web.ActivityPub.Publisher
245 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
247 quarantined_instances: [],
248 managed_config: true,
249 static_dir: "instance/static/",
250 allowed_post_formats: [
256 mrf_transparency: true,
257 mrf_transparency_exclusions: [],
258 autofollowed_nicknames: [],
259 max_pinned_statuses: 1,
260 no_attachment_links: false,
261 welcome_user_nickname: nil,
262 welcome_message: nil,
263 max_report_comment_size: 1000,
264 safe_dm_mentions: false,
266 remote_post_retention_days: 90,
267 skip_thread_containment: true,
268 limit_to_local_content: :unauthenticated,
269 dynamic_configuration: false,
270 user_bio_length: 5000,
271 user_name_length: 100,
272 max_account_fields: 10,
273 max_remote_account_fields: 20,
274 account_field_name_length: 512,
275 account_field_value_length: 2048,
276 external_user_synchronization: true,
277 extended_nickname_format: false
279 config :pleroma, :markup,
280 # XXX - unfortunately, inline images must be enabled by default right now, because
281 # of custom emoji. Issue #275 discusses defanging that somehow.
282 allow_inline_images: true,
283 allow_headings: false,
287 Pleroma.HTML.Transform.MediaProxy,
288 Pleroma.HTML.Scrubber.Default
291 config :pleroma, :frontend_configurations,
293 theme: "pleroma-dark",
294 logo: "/static/logo.png",
295 background: "/images/city.jpg",
296 redirectRootNoLogin: "/main/all",
297 redirectRootLogin: "/main/friends",
298 showInstanceSpecificPanel: true,
299 scopeOptionsEnabled: false,
300 formattingOptionsEnabled: false,
301 collapseMessageWithSubject: false,
302 hidePostStats: false,
303 hideUserStats: false,
305 subjectLineBehavior: "email",
306 alwaysShowSubjectInput: true
309 showInstanceSpecificPanel: true
312 config :pleroma, :assets,
315 url: "/images/pleroma-fox-tan-smol.png",
316 mime_type: "image/png"
318 pleroma_fox_tan_shy: %{
319 url: "/images/pleroma-fox-tan-shy.png",
320 mime_type: "image/png"
323 default_mascot: :pleroma_fox_tan
325 config :pleroma, :manifest,
328 src: "/static/logo.png",
332 theme_color: "#282c37",
333 background_color: "#191b22"
335 config :pleroma, :activitypub,
336 unfollow_blocked: true,
337 outgoing_blocks: true,
338 follow_handshake_timeout: 500,
339 sign_object_fetches: true
341 config :pleroma, :streamer,
345 config :pleroma, :user, deny_follow_blocked: true
347 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
349 config :pleroma, :mrf_rejectnonpublic,
350 allow_followersonly: false,
353 config :pleroma, :mrf_hellthread,
354 delist_threshold: 10,
357 config :pleroma, :mrf_simple,
360 federated_timeline_removal: [],
367 config :pleroma, :mrf_keyword,
369 federated_timeline_removal: [],
372 config :pleroma, :mrf_subchain, match_actor: %{}
374 config :pleroma, :mrf_vocabulary,
378 config :pleroma, :rich_media,
381 ignore_tld: ["local", "localdomain", "lan"],
383 Pleroma.Web.RichMedia.Parsers.TwitterCard,
384 Pleroma.Web.RichMedia.Parsers.OGP,
385 Pleroma.Web.RichMedia.Parsers.OEmbed
387 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
389 config :pleroma, :media_proxy,
392 redirect_on_failure: false,
393 max_body_length: 25 * 1_048_576,
395 follow_redirect: true,
401 config :pleroma, :chat, enabled: true
403 config :phoenix, :format_encoders, json: Jason
405 config :phoenix, :json_library, Jason
407 config :pleroma, :gopher,
412 config :pleroma, Pleroma.Web.Metadata,
414 Pleroma.Web.Metadata.Providers.OpenGraph,
415 Pleroma.Web.Metadata.Providers.TwitterCard,
416 Pleroma.Web.Metadata.Providers.RelMe,
417 Pleroma.Web.Metadata.Providers.Feed
421 config :pleroma, :suggestions,
424 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
427 web: "https://vinayaka.distsn.org"
429 config :pleroma, :http_security,
432 sts_max_age: 31_536_000,
433 ct_max_age: 2_592_000,
434 referrer_policy: "same-origin"
438 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
443 "X-RateLimit-Remaining",
448 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
450 config :pleroma, Pleroma.User,
451 restricted_nicknames: [
484 config :pleroma, Oban,
487 prune: {:maxlen, 1500},
489 activity_expiration: 10,
490 federator_incoming: 50,
491 federator_outgoing: 50,
495 scheduled_activities: 10,
499 config :pleroma, :workers,
501 federator_incoming: 5,
502 federator_outgoing: 5
505 config :pleroma, :fetch_initial_posts,
513 # TODO: Set to :no_scheme when it works properly
521 config :pleroma, :ldap,
522 enabled: System.get_env("LDAP_ENABLED") == "true",
523 host: System.get_env("LDAP_HOST") || "localhost",
524 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
525 ssl: System.get_env("LDAP_SSL") == "true",
527 tls: System.get_env("LDAP_TLS") == "true",
529 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
530 uid: System.get_env("LDAP_UID") || "cn"
535 oauth_consumer_strategies =
536 System.get_env("OAUTH_CONSUMER_STRATEGIES")
539 |> Enum.map(&hd(String.split(&1, ":")))
541 ueberauth_providers =
542 for strategy <- oauth_consumer_strategies do
543 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
544 strategy_module = String.to_atom(strategy_module_name)
545 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
551 providers: ueberauth_providers
553 config :pleroma, :auth, oauth_consumer_strategies: oauth_consumer_strategies
555 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
557 config :pleroma, Pleroma.Emails.UserEmail,
560 link_color: "#d8a070",
561 background_color: "#2C3645",
562 content_background_color: "#1B2635",
563 header_color: "#d8a070",
564 text_color: "#b9b9ba",
565 text_muted_color: "#b9b9ba"
568 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
570 config :pleroma, Pleroma.ScheduledActivity,
571 daily_user_limit: 25,
572 total_user_limit: 300,
575 config :pleroma, :email_notifications,
578 schedule: "0 0 * * 0",
580 inactivity_threshold: 7
583 config :pleroma, :oauth2,
584 token_expires_in: 600,
585 issue_new_refresh_token: true,
586 clean_expired_tokens: false,
587 clean_expired_tokens_interval: 86_400_000
589 config :pleroma, :database, rum_enabled: false
591 config :pleroma, :env, Mix.env()
593 config :http_signatures,
594 adapter: Pleroma.Signature
596 config :pleroma, :rate_limit, authentication: {60_000, 15}
598 config :pleroma, Pleroma.ActivityExpiration, enabled: true
600 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: false
602 config :pleroma, :web_cache_ttl,
604 activity_pub_question: 30_000
606 # Import environment specific config. This must remain at the bottom
607 # of this file so it overrides the configuration defined above.
608 import_config "#{Mix.env()}.exs"