Various runtime configuration fixes
[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 force_media_proxy: false
25
26 config :pleroma, Pleroma.Uploaders.MDII,
27 cgi: "https://mdii.sakura.ne.jp/mdii-post.cgi",
28 files: "https://mdii.sakura.ne.jp"
29
30 config :pleroma, :emoji, shortcode_globs: ["/emoji/custom/**/*.png"]
31
32 config :pleroma, :uri_schemes,
33 valid_schemes: [
34 "https",
35 "http",
36 "dat",
37 "dweb",
38 "gopher",
39 "ipfs",
40 "ipns",
41 "irc",
42 "ircs",
43 "magnet",
44 "mailto",
45 "mumble",
46 "ssb",
47 "xmpp"
48 ]
49
50 # Configures the endpoint
51 config :pleroma, Pleroma.Web.Endpoint,
52 url: [host: "localhost"],
53 protocol: "https",
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
59
60 # Configures Elixir's Logger
61 config :logger, :console,
62 format: "$time $metadata[$level] $message\n",
63 metadata: [:request_id]
64
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"]
70 }
71
72 config :pleroma, :websub, Pleroma.Web.Websub
73 config :pleroma, :ostatus, Pleroma.Web.OStatus
74 config :pleroma, :httpoison, Pleroma.HTTP
75
76 version =
77 with {version, 0} <- System.cmd("git", ["rev-parse", "HEAD"]) do
78 "Pleroma #{Mix.Project.config()[:version]} #{String.trim(version)}"
79 else
80 _ -> "Pleroma #{Mix.Project.config()[:version]} dev"
81 end
82
83 # Configures http settings, upstream proxy etc.
84 config :pleroma, :http, proxy_url: nil
85
86 config :pleroma, :instance,
87 version: version,
88 name: "Pleroma",
89 email: "example@example.com",
90 description: "A Pleroma instance, an alternative fediverse server",
91 limit: 5000,
92 upload_limit: 16_000_000,
93 avatar_upload_limit: 2_000_000,
94 background_upload_limit: 4_000_000,
95 banner_upload_limit: 4_000_000,
96 registrations_open: true,
97 federating: true,
98 allow_relay: true,
99 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
100 public: true,
101 quarantined_instances: [],
102 managed_config: true,
103 allowed_post_formats: [
104 "text/plain",
105 "text/html",
106 "text/markdown"
107 ],
108 finmoji_enabled: true,
109 mrf_transparency: true
110
111 config :pleroma, :markup,
112 # XXX - unfortunately, inline images must be enabled by default right now, because
113 # of custom emoji. Issue #275 discusses defanging that somehow.
114 allow_inline_images: true,
115 allow_headings: false,
116 allow_tables: false,
117 allow_fonts: false,
118 scrub_policy: [
119 Pleroma.HTML.Transform.MediaProxy,
120 Pleroma.HTML.Scrubber.Default
121 ]
122
123 config :pleroma, :fe,
124 theme: "pleroma-dark",
125 logo: "/static/logo.png",
126 logo_mask: true,
127 logo_margin: "0.1em",
128 background: "/static/aurora_borealis.jpg",
129 redirect_root_no_login: "/main/all",
130 redirect_root_login: "/main/friends",
131 show_instance_panel: true,
132 scope_options_enabled: false,
133 formatting_options_enabled: false,
134 collapse_message_with_subject: false,
135 hide_post_stats: false,
136 hide_user_stats: false
137
138 config :pleroma, :activitypub,
139 accept_blocks: true,
140 unfollow_blocked: true,
141 outgoing_blocks: true,
142 follow_handshake_timeout: 500
143
144 config :pleroma, :user, deny_follow_blocked: true
145
146 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
147
148 config :pleroma, :mrf_rejectnonpublic,
149 allow_followersonly: false,
150 allow_direct: false
151
152 config :pleroma, :mrf_simple,
153 media_removal: [],
154 media_nsfw: [],
155 federated_timeline_removal: [],
156 reject: [],
157 accept: []
158
159 config :pleroma, :media_proxy,
160 enabled: false,
161 redirect_on_failure: true
162
163 # base_url: "https://cache.pleroma.social"
164
165 config :pleroma, :chat, enabled: true
166
167 config :ecto, json_library: Jason
168
169 config :phoenix, :format_encoders, json: Jason
170
171 config :pleroma, :gopher,
172 enabled: false,
173 ip: {0, 0, 0, 0},
174 port: 9999
175
176 config :pleroma, :suggestions,
177 enabled: false,
178 third_party_engine:
179 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
180 timeout: 300_000,
181 limit: 23,
182 web: "https://vinayaka.distsn.org/?{{host}}+{{user}}"
183
184 config :pleroma, :http_security,
185 enabled: true,
186 sts: false,
187 sts_max_age: 31_536_000,
188 ct_max_age: 2_592_000,
189 referrer_policy: "same-origin"
190
191 config :cors_plug,
192 max_age: 86_400,
193 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
194 expose: [
195 "Link",
196 "X-RateLimit-Reset",
197 "X-RateLimit-Limit",
198 "X-RateLimit-Remaining",
199 "X-Request-Id",
200 "Idempotency-Key"
201 ],
202 credentials: true,
203 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
204
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"