activitypub: upload: pass through an upload limit if one is provided
[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.Upload,
14 uploader: Pleroma.Uploaders.Local,
15 strip_exif: false
16
17 config :pleroma, Pleroma.Uploaders.Local,
18 uploads: "uploads",
19 uploads_url: "{{base_url}}/media/{{file}}"
20
21 config :pleroma, Pleroma.Uploaders.S3,
22 bucket: nil,
23 public_endpoint: "https://s3.amazonaws.com"
24
25 config :pleroma, :emoji, shortcode_globs: ["/emoji/custom/**/*.png"]
26
27 config :pleroma, :uri_schemes,
28 valid_schemes: [
29 "https",
30 "http",
31 "dat",
32 "dweb",
33 "gopher",
34 "ipfs",
35 "ipns",
36 "irc",
37 "ircs",
38 "magnet",
39 "mailto",
40 "mumble",
41 "ssb",
42 "xmpp"
43 ]
44
45 # Configures the endpoint
46 config :pleroma, Pleroma.Web.Endpoint,
47 url: [host: "localhost"],
48 protocol: "https",
49 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
50 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
51 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
52 secure_cookie_flag: true
53
54 # Configures Elixir's Logger
55 config :logger, :console,
56 format: "$time $metadata[$level] $message\n",
57 metadata: [:request_id]
58
59 config :mime, :types, %{
60 "application/xml" => ["xml"],
61 "application/xrd+xml" => ["xrd+xml"],
62 "application/activity+json" => ["activity+json"],
63 "application/ld+json" => ["activity+json"]
64 }
65
66 config :pleroma, :websub, Pleroma.Web.Websub
67 config :pleroma, :ostatus, Pleroma.Web.OStatus
68 config :pleroma, :httpoison, Pleroma.HTTP
69
70 version =
71 with {version, 0} <- System.cmd("git", ["rev-parse", "HEAD"]) do
72 "Pleroma #{Mix.Project.config()[:version]} #{String.trim(version)}"
73 else
74 _ -> "Pleroma #{Mix.Project.config()[:version]} dev"
75 end
76
77 # Configures http settings, upstream proxy etc.
78 config :pleroma, :http, proxy_url: nil
79
80 config :pleroma, :instance,
81 version: version,
82 name: "Pleroma",
83 email: "example@example.com",
84 description: "A Pleroma instance, an alternative fediverse server",
85 limit: 5000,
86 upload_limit: 16_000_000,
87 avatar_upload_limit: 2_000_000,
88 background_upload_limit: 4_000_000,
89 banner_upload_limit: 4_000_000,
90 registrations_open: true,
91 federating: true,
92 allow_relay: true,
93 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
94 public: true,
95 quarantined_instances: [],
96 managed_config: true,
97 allowed_post_formats: [
98 "text/plain",
99 "text/html",
100 "text/markdown"
101 ],
102 finmoji_enabled: true,
103 mrf_transparency: true
104
105 config :pleroma, :markup,
106 # XXX - unfortunately, inline images must be enabled by default right now, because
107 # of custom emoji. Issue #275 discusses defanging that somehow.
108 allow_inline_images: true,
109 allow_headings: false,
110 allow_tables: false,
111 allow_fonts: false,
112 scrub_policy: [
113 Pleroma.HTML.Transform.MediaProxy,
114 Pleroma.HTML.Scrubber.Default
115 ]
116
117 config :pleroma, :fe,
118 theme: "pleroma-dark",
119 logo: "/static/logo.png",
120 logo_mask: true,
121 logo_margin: "0.1em",
122 background: "/static/aurora_borealis.jpg",
123 redirect_root_no_login: "/main/all",
124 redirect_root_login: "/main/friends",
125 show_instance_panel: true,
126 scope_options_enabled: false,
127 formatting_options_enabled: false,
128 collapse_message_with_subject: false,
129 hide_post_stats: false,
130 hide_user_stats: false
131
132 config :pleroma, :activitypub,
133 accept_blocks: true,
134 unfollow_blocked: true,
135 outgoing_blocks: true,
136 follow_handshake_timeout: 500
137
138 config :pleroma, :user, deny_follow_blocked: true
139
140 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
141
142 config :pleroma, :mrf_rejectnonpublic,
143 allow_followersonly: false,
144 allow_direct: false
145
146 config :pleroma, :mrf_simple,
147 media_removal: [],
148 media_nsfw: [],
149 federated_timeline_removal: [],
150 reject: [],
151 accept: []
152
153 config :pleroma, :media_proxy,
154 enabled: false,
155 redirect_on_failure: true
156
157 # base_url: "https://cache.pleroma.social"
158
159 config :pleroma, :chat, enabled: true
160
161 config :ecto, json_library: Jason
162
163 config :phoenix, :format_encoders, json: Jason
164
165 config :pleroma, :gopher,
166 enabled: false,
167 ip: {0, 0, 0, 0},
168 port: 9999
169
170 config :pleroma, :suggestions,
171 enabled: false,
172 third_party_engine:
173 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
174 timeout: 300_000,
175 limit: 23,
176 web: "https://vinayaka.distsn.org/?{{host}}+{{user}}"
177
178 # Import environment specific config. This must remain at the bottom
179 # of this file so it overrides the configuration defined above.
180 import_config "#{Mix.env()}.exs"