Refactor common functions to common.ex
[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 # Upload configuration
14 config :pleroma, Pleroma.Upload,
15 uploader: Pleroma.Uploaders.Local,
16 filters: [],
17 proxy_remote: false,
18 proxy_opts: []
19
20 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
21
22 config :pleroma, Pleroma.Uploaders.S3,
23 bucket: nil,
24 public_endpoint: "https://s3.amazonaws.com"
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 config :tesla, adapter: Tesla.Adapter.Hackney
76
77 # Configures http settings, upstream proxy etc.
78 config :pleroma, :http, proxy_url: nil
79
80 config :pleroma, :instance,
81 name: "Pleroma",
82 email: "example@example.com",
83 description: "A Pleroma instance, an alternative fediverse server",
84 limit: 5000,
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,
90 federating: true,
91 allow_relay: true,
92 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
93 public: true,
94 quarantined_instances: [],
95 managed_config: true,
96 allowed_post_formats: [
97 "text/plain",
98 "text/html",
99 "text/markdown"
100 ],
101 finmoji_enabled: true,
102 mrf_transparency: true
103
104 config :pleroma, :markup,
105 # XXX - unfortunately, inline images must be enabled by default right now, because
106 # of custom emoji. Issue #275 discusses defanging that somehow.
107 allow_inline_images: true,
108 allow_headings: false,
109 allow_tables: false,
110 allow_fonts: false,
111 scrub_policy: [
112 Pleroma.HTML.Transform.MediaProxy,
113 Pleroma.HTML.Scrubber.Default
114 ]
115
116 config :pleroma, :fe,
117 theme: "pleroma-dark",
118 logo: "/static/logo.png",
119 logo_mask: true,
120 logo_margin: "0.1em",
121 background: "/static/aurora_borealis.jpg",
122 redirect_root_no_login: "/main/all",
123 redirect_root_login: "/main/friends",
124 show_instance_panel: true,
125 scope_options_enabled: false,
126 formatting_options_enabled: false,
127 collapse_message_with_subject: false,
128 hide_post_stats: false,
129 hide_user_stats: false
130
131 config :pleroma, :activitypub,
132 accept_blocks: true,
133 unfollow_blocked: true,
134 outgoing_blocks: true,
135 follow_handshake_timeout: 500
136
137 config :pleroma, :user, deny_follow_blocked: true
138
139 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
140
141 config :pleroma, :mrf_rejectnonpublic,
142 allow_followersonly: false,
143 allow_direct: false
144
145 config :pleroma, :mrf_simple,
146 media_removal: [],
147 media_nsfw: [],
148 federated_timeline_removal: [],
149 reject: [],
150 accept: []
151
152 config :pleroma, :media_proxy,
153 enabled: false,
154 # base_url: "https://cache.pleroma.social",
155 proxy_opts: [
156 # inline_content_types: [] | false | true,
157 # http: [:insecure]
158 ]
159
160 config :pleroma, :chat, enabled: true
161
162 config :ecto, json_library: Jason
163
164 config :phoenix, :format_encoders, json: Jason
165
166 config :pleroma, :gopher,
167 enabled: false,
168 ip: {0, 0, 0, 0},
169 port: 9999
170
171 config :pleroma, :suggestions,
172 enabled: false,
173 third_party_engine:
174 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
175 timeout: 300_000,
176 limit: 23,
177 web: "https://vinayaka.distsn.org/?{{host}}+{{user}}"
178
179 config :pleroma, :http_security,
180 enabled: true,
181 sts: false,
182 sts_max_age: 31_536_000,
183 ct_max_age: 2_592_000,
184 referrer_policy: "same-origin"
185
186 config :cors_plug,
187 max_age: 86_400,
188 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
189 expose: [
190 "Link",
191 "X-RateLimit-Reset",
192 "X-RateLimit-Limit",
193 "X-RateLimit-Remaining",
194 "X-Request-Id",
195 "Idempotency-Key"
196 ],
197 credentials: true,
198 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
199
200 # Import environment specific config. This must remain at the bottom
201 # of this file so it overrides the configuration defined above.
202 import_config "#{Mix.env()}.exs"