1 # This file is responsible for configuring your application
2 # and its dependencies with the aid of the Mix.Config module.
4 # This configuration file is loaded before any dependency and
5 # is restricted to this project.
8 # General application configuration
9 config :pleroma, ecto_repos: [Pleroma.Repo]
11 config :pleroma, Pleroma.Repo, types: Pleroma.PostgresTypes
13 # Upload configuration
14 config :pleroma, Pleroma.Upload,
15 uploader: Pleroma.Uploaders.Local,
20 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
22 config :pleroma, Pleroma.Uploaders.S3,
24 public_endpoint: "https://s3.amazonaws.com"
26 config :pleroma, Pleroma.Uploaders.MDII,
27 cgi: "https://mdii.sakura.ne.jp/mdii-post.cgi",
28 files: "https://mdii.sakura.ne.jp"
30 config :pleroma, :emoji, shortcode_globs: ["/emoji/custom/**/*.png"]
32 config :pleroma, :uri_schemes,
50 # Configures the endpoint
51 config :pleroma, Pleroma.Web.Endpoint,
52 url: [host: "localhost"],
54 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
55 signing_salt: "CqaoopA2",
56 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
57 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
58 secure_cookie_flag: true
60 # Configures Elixir's Logger
61 config :logger, :console,
62 format: "$time $metadata[$level] $message\n",
63 metadata: [:request_id]
65 config :mime, :types, %{
66 "application/xml" => ["xml"],
67 "application/xrd+xml" => ["xrd+xml"],
68 "application/activity+json" => ["activity+json"],
69 "application/ld+json" => ["activity+json"]
72 config :pleroma, :websub, Pleroma.Web.Websub
73 config :pleroma, :ostatus, Pleroma.Web.OStatus
74 config :pleroma, :httpoison, Pleroma.HTTP
75 config :tesla, adapter: Tesla.Adapter.Hackney
77 # Configures http settings, upstream proxy etc.
78 config :pleroma, :http, proxy_url: nil
80 config :pleroma, :instance,
82 email: "example@example.com",
83 description: "A Pleroma instance, an alternative fediverse server",
85 upload_limit: 16_000_000,
86 avatar_upload_limit: 2_000_000,
87 background_upload_limit: 4_000_000,
88 banner_upload_limit: 4_000_000,
89 registrations_open: true,
92 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
94 quarantined_instances: [],
96 allowed_post_formats: [
101 finmoji_enabled: true,
102 mrf_transparency: true
104 config :pleroma, Pleroma.Mailer, adapter: Swoosh.Adapters.Local
106 config :pleroma, :markup,
107 # XXX - unfortunately, inline images must be enabled by default right now, because
108 # of custom emoji. Issue #275 discusses defanging that somehow.
109 allow_inline_images: true,
110 allow_headings: false,
114 Pleroma.HTML.Transform.MediaProxy,
115 Pleroma.HTML.Scrubber.Default
118 config :pleroma, :fe,
119 theme: "pleroma-dark",
120 logo: "/static/logo.png",
122 logo_margin: "0.1em",
123 background: "/static/aurora_borealis.jpg",
124 redirect_root_no_login: "/main/all",
125 redirect_root_login: "/main/friends",
126 show_instance_panel: true,
127 scope_options_enabled: false,
128 formatting_options_enabled: false,
129 collapse_message_with_subject: false,
130 hide_post_stats: false,
131 hide_user_stats: false,
133 subject_line_behavior: "email",
134 always_show_subject_input: true
136 config :pleroma, :activitypub,
138 unfollow_blocked: true,
139 outgoing_blocks: true,
140 follow_handshake_timeout: 500
142 config :pleroma, :user, deny_follow_blocked: true
144 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
146 config :pleroma, :mrf_rejectnonpublic,
147 allow_followersonly: false,
150 config :pleroma, :mrf_simple,
153 federated_timeline_removal: [],
157 config :pleroma, :media_proxy,
159 # base_url: "https://cache.pleroma.social",
161 # inline_content_types: [] | false | true,
165 config :pleroma, :chat, enabled: true
167 config :ecto, json_library: Jason
169 config :phoenix, :format_encoders, json: Jason
171 config :pleroma, :gopher,
176 config :pleroma, :suggestions,
179 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
182 web: "https://vinayaka.distsn.org/?{{host}}+{{user}}"
184 config :pleroma, :http_security,
187 sts_max_age: 31_536_000,
188 ct_max_age: 2_592_000,
189 referrer_policy: "same-origin"
193 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
198 "X-RateLimit-Remaining",
203 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
205 # Import environment specific config. This must remain at the bottom
206 # of this file so it overrides the configuration defined above.
207 import_config "#{Mix.env()}.exs"