diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-04-17 13:44:41 +0200 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-04-17 13:44:41 +0200 |
commit | ce6cc84a4a9bfe1d47d00201ab31c241878f0ab9 (patch) | |
tree | 502f181aec4ec9c482c4224f8910f5789f70eac9 /config | |
parent | 6a0e69a8a38094cfbd5a69242ad5fb00f0658226 (diff) | |
download | pleroma-ce6cc84a4a9bfe1d47d00201ab31c241878f0ab9.tar.gz pleroma-ce6cc84a4a9bfe1d47d00201ab31c241878f0ab9.zip |
Add basic webfinger.
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs index 2b041b10f..18a2490a4 100644 --- a/config/config.exs +++ b/config/config.exs @@ -26,6 +26,10 @@ config :logger, :console, format: "$time $metadata[$level] $message\n", metadata: [:request_id] +config :mime, :types, %{ + "application/xrd+xml" => ["xrd+xml"] +} + # Import environment specific config. This must remain at the bottom # of this file so it overrides the configuration defined above. import_config "#{Mix.env}.exs" |