Merge branch '459_fix_user_profile_crash' into 'develop'
[akkoma] / config / config.exs
1 # This file is responsible for configuring your application
2 # and its dependencies with the aid of the Mix.Config module.
3 #
4 # This configuration file is loaded before any dependency and
5 # is restricted to this project.
6 use Mix.Config
7
8 # General application configuration
9 config :pleroma, ecto_repos: [Pleroma.Repo]
10
11 config :pleroma, Pleroma.Repo, types: Pleroma.PostgresTypes
12
13 config :pleroma, Pleroma.Captcha,
14 enabled: false,
15 seconds_retained: 180,
16 method: Pleroma.Captcha.Kocaptcha
17
18 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
19
20 # Upload configuration
21 config :pleroma, Pleroma.Upload,
22 uploader: Pleroma.Uploaders.Local,
23 filters: [],
24 proxy_remote: false,
25 proxy_opts: []
26
27 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
28
29 config :pleroma, Pleroma.Uploaders.S3,
30 bucket: nil,
31 public_endpoint: "https://s3.amazonaws.com"
32
33 config :pleroma, Pleroma.Uploaders.MDII,
34 cgi: "https://mdii.sakura.ne.jp/mdii-post.cgi",
35 files: "https://mdii.sakura.ne.jp"
36
37 config :pleroma, :emoji, shortcode_globs: ["/emoji/custom/**/*.png"]
38
39 config :pleroma, :uri_schemes,
40 valid_schemes: [
41 "https",
42 "http",
43 "dat",
44 "dweb",
45 "gopher",
46 "ipfs",
47 "ipns",
48 "irc",
49 "ircs",
50 "magnet",
51 "mailto",
52 "mumble",
53 "ssb",
54 "xmpp"
55 ]
56
57 # Configures the endpoint
58 config :pleroma, Pleroma.Web.Endpoint,
59 url: [host: "localhost"],
60 http: [
61 dispatch: [
62 {:_,
63 [
64 {"/api/v1/streaming", Elixir.Pleroma.Web.MastodonAPI.WebsocketHandler, []},
65 {:_, Plug.Adapters.Cowboy.Handler, {Pleroma.Web.Endpoint, []}}
66 ]}
67 ]
68 ],
69 protocol: "https",
70 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
71 signing_salt: "CqaoopA2",
72 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
73 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
74 secure_cookie_flag: true
75
76 # Configures Elixir's Logger
77 config :logger, :console,
78 format: "$time $metadata[$level] $message\n",
79 metadata: [:request_id]
80
81 config :mime, :types, %{
82 "application/xml" => ["xml"],
83 "application/xrd+xml" => ["xrd+xml"],
84 "application/jrd+json" => ["jrd+json"],
85 "application/activity+json" => ["activity+json"],
86 "application/ld+json" => ["activity+json"]
87 }
88
89 config :pleroma, :websub, Pleroma.Web.Websub
90 config :pleroma, :ostatus, Pleroma.Web.OStatus
91 config :pleroma, :httpoison, Pleroma.HTTP
92 config :tesla, adapter: Tesla.Adapter.Hackney
93
94 # Configures http settings, upstream proxy etc.
95 config :pleroma, :http, proxy_url: nil
96
97 config :pleroma, :instance,
98 name: "Pleroma",
99 email: "example@example.com",
100 description: "A Pleroma instance, an alternative fediverse server",
101 limit: 5000,
102 upload_limit: 16_000_000,
103 avatar_upload_limit: 2_000_000,
104 background_upload_limit: 4_000_000,
105 banner_upload_limit: 4_000_000,
106 registrations_open: true,
107 federating: true,
108 allow_relay: true,
109 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
110 public: true,
111 quarantined_instances: [],
112 managed_config: true,
113 allowed_post_formats: [
114 "text/plain",
115 "text/html",
116 "text/markdown"
117 ],
118 finmoji_enabled: true,
119 mrf_transparency: true
120
121 config :pleroma, :markup,
122 # XXX - unfortunately, inline images must be enabled by default right now, because
123 # of custom emoji. Issue #275 discusses defanging that somehow.
124 allow_inline_images: true,
125 allow_headings: false,
126 allow_tables: false,
127 allow_fonts: false,
128 scrub_policy: [
129 Pleroma.HTML.Transform.MediaProxy,
130 Pleroma.HTML.Scrubber.Default
131 ]
132
133 config :pleroma, :fe,
134 theme: "pleroma-dark",
135 logo: "/static/logo.png",
136 logo_mask: true,
137 logo_margin: "0.1em",
138 background: "/static/aurora_borealis.jpg",
139 redirect_root_no_login: "/main/all",
140 redirect_root_login: "/main/friends",
141 show_instance_panel: true,
142 scope_options_enabled: false,
143 formatting_options_enabled: false,
144 collapse_message_with_subject: false,
145 hide_post_stats: false,
146 hide_user_stats: false,
147 scope_copy: true,
148 subject_line_behavior: "email",
149 always_show_subject_input: true
150
151 config :pleroma, :activitypub,
152 accept_blocks: true,
153 unfollow_blocked: true,
154 outgoing_blocks: true,
155 follow_handshake_timeout: 500
156
157 config :pleroma, :user, deny_follow_blocked: true
158
159 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
160
161 config :pleroma, :mrf_rejectnonpublic,
162 allow_followersonly: false,
163 allow_direct: false
164
165 config :pleroma, :mrf_simple,
166 media_removal: [],
167 media_nsfw: [],
168 federated_timeline_removal: [],
169 reject: [],
170 accept: []
171
172 config :pleroma, :media_proxy,
173 enabled: false,
174 # base_url: "https://cache.pleroma.social",
175 proxy_opts: [
176 # inline_content_types: [] | false | true,
177 # http: [:insecure]
178 ]
179
180 config :pleroma, :chat, enabled: true
181
182 config :ecto, json_library: Jason
183
184 config :phoenix, :format_encoders, json: Jason
185
186 config :pleroma, :gopher,
187 enabled: false,
188 ip: {0, 0, 0, 0},
189 port: 9999
190
191 config :pleroma, :suggestions,
192 enabled: false,
193 third_party_engine:
194 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
195 timeout: 300_000,
196 limit: 23,
197 web: "https://vinayaka.distsn.org/?{{host}}+{{user}}"
198
199 config :pleroma, :http_security,
200 enabled: true,
201 sts: false,
202 sts_max_age: 31_536_000,
203 ct_max_age: 2_592_000,
204 referrer_policy: "same-origin"
205
206 config :cors_plug,
207 max_age: 86_400,
208 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
209 expose: [
210 "Link",
211 "X-RateLimit-Reset",
212 "X-RateLimit-Limit",
213 "X-RateLimit-Remaining",
214 "X-Request-Id",
215 "Idempotency-Key"
216 ],
217 credentials: true,
218 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
219
220 # Import environment specific config. This must remain at the bottom
221 # of this file so it overrides the configuration defined above.
222 import_config "#{Mix.env()}.exs"