Merge branch 'feature/rich-media' 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_valid: 60,
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 websocket_config = [
58 path: "/websocket",
59 serializer: [
60 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
61 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
62 ],
63 timeout: 60_000,
64 transport_log: false,
65 compress: false
66 ]
67
68 # Configures the endpoint
69 config :pleroma, Pleroma.Web.Endpoint,
70 url: [host: "localhost"],
71 http: [
72 dispatch: [
73 {:_,
74 [
75 {"/api/v1/streaming", Elixir.Pleroma.Web.MastodonAPI.WebsocketHandler, []},
76 {"/socket/websocket", Phoenix.Endpoint.CowboyWebSocket,
77 {nil, {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
78 {:_, Plug.Adapters.Cowboy.Handler, {Pleroma.Web.Endpoint, []}}
79 ]}
80 ]
81 ],
82 protocol: "https",
83 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
84 signing_salt: "CqaoopA2",
85 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
86 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
87 secure_cookie_flag: true
88
89 # Configures Elixir's Logger
90 config :logger, :console,
91 format: "$time $metadata[$level] $message\n",
92 metadata: [:request_id]
93
94 config :mime, :types, %{
95 "application/xml" => ["xml"],
96 "application/xrd+xml" => ["xrd+xml"],
97 "application/jrd+json" => ["jrd+json"],
98 "application/activity+json" => ["activity+json"],
99 "application/ld+json" => ["activity+json"]
100 }
101
102 config :pleroma, :websub, Pleroma.Web.Websub
103 config :pleroma, :ostatus, Pleroma.Web.OStatus
104 config :pleroma, :httpoison, Pleroma.HTTP
105 config :tesla, adapter: Tesla.Adapter.Hackney
106
107 # Configures http settings, upstream proxy etc.
108 config :pleroma, :http, proxy_url: nil
109
110 config :pleroma, :instance,
111 name: "Pleroma",
112 email: "example@example.com",
113 description: "A Pleroma instance, an alternative fediverse server",
114 limit: 5_000,
115 remote_limit: 100_000,
116 upload_limit: 16_000_000,
117 avatar_upload_limit: 2_000_000,
118 background_upload_limit: 4_000_000,
119 banner_upload_limit: 4_000_000,
120 registrations_open: true,
121 federating: true,
122 allow_relay: true,
123 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
124 public: true,
125 quarantined_instances: [],
126 managed_config: true,
127 static_dir: "instance/static/",
128 allowed_post_formats: [
129 "text/plain",
130 "text/html",
131 "text/markdown"
132 ],
133 finmoji_enabled: true,
134 mrf_transparency: true
135
136 config :pleroma, :markup,
137 # XXX - unfortunately, inline images must be enabled by default right now, because
138 # of custom emoji. Issue #275 discusses defanging that somehow.
139 allow_inline_images: true,
140 allow_headings: false,
141 allow_tables: false,
142 allow_fonts: false,
143 scrub_policy: [
144 Pleroma.HTML.Transform.MediaProxy,
145 Pleroma.HTML.Scrubber.Default
146 ]
147
148 config :pleroma, :fe,
149 theme: "pleroma-dark",
150 logo: "/static/logo.png",
151 logo_mask: true,
152 logo_margin: "0.1em",
153 background: "/static/aurora_borealis.jpg",
154 redirect_root_no_login: "/main/all",
155 redirect_root_login: "/main/friends",
156 show_instance_panel: true,
157 scope_options_enabled: false,
158 formatting_options_enabled: false,
159 collapse_message_with_subject: false,
160 hide_post_stats: false,
161 hide_user_stats: false,
162 scope_copy: true,
163 subject_line_behavior: "email",
164 always_show_subject_input: true
165
166 config :pleroma, :activitypub,
167 accept_blocks: true,
168 unfollow_blocked: true,
169 outgoing_blocks: true,
170 follow_handshake_timeout: 500
171
172 config :pleroma, :user, deny_follow_blocked: true
173
174 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
175
176 config :pleroma, :mrf_rejectnonpublic,
177 allow_followersonly: false,
178 allow_direct: false
179
180 config :pleroma, :mrf_hellthread, threshold: 10
181
182 config :pleroma, :mrf_simple,
183 media_removal: [],
184 media_nsfw: [],
185 federated_timeline_removal: [],
186 reject: [],
187 accept: []
188
189 config :pleroma, :media_proxy, enabled: false
190
191 config :pleroma, :chat, enabled: true
192
193 config :ecto, json_library: Jason
194
195 config :phoenix, :format_encoders, json: Jason
196
197 config :pleroma, :gopher,
198 enabled: false,
199 ip: {0, 0, 0, 0},
200 port: 9999
201
202 config :pleroma, :suggestions,
203 enabled: false,
204 third_party_engine:
205 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
206 timeout: 300_000,
207 limit: 23,
208 web: "https://vinayaka.distsn.org/?{{host}}+{{user}}"
209
210 config :pleroma, :http_security,
211 enabled: true,
212 sts: false,
213 sts_max_age: 31_536_000,
214 ct_max_age: 2_592_000,
215 referrer_policy: "same-origin"
216
217 config :cors_plug,
218 max_age: 86_400,
219 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
220 expose: [
221 "Link",
222 "X-RateLimit-Reset",
223 "X-RateLimit-Limit",
224 "X-RateLimit-Remaining",
225 "X-Request-Id",
226 "Idempotency-Key"
227 ],
228 credentials: true,
229 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
230
231 config :pleroma, Pleroma.User,
232 restricted_nicknames: [
233 "about",
234 "~",
235 "main",
236 "users",
237 "settings",
238 "objects",
239 "activities",
240 "web",
241 "registration",
242 "friend-requests",
243 "pleroma",
244 "api",
245 "tag",
246 "notice",
247 "status",
248 "user-search",
249 "ostatus_subscribe",
250 "oauth",
251 "push",
252 "relay",
253 "inbox",
254 ".well-known",
255 "nodeinfo",
256 "auth",
257 "proxy",
258 "dev",
259 "internal",
260 "media"
261 ]
262
263 config :pleroma, Pleroma.Web.Federator, max_jobs: 50
264
265 config :pleroma, Pleroma.Web.Federator.RetryQueue,
266 enabled: false,
267 max_jobs: 20,
268 initial_timeout: 30,
269 max_retries: 5
270
271 # Import environment specific config. This must remain at the bottom
272 # of this file so it overrides the configuration defined above.
273 import_config "#{Mix.env()}.exs"