Merge branch 'develop' into feature/activitypub
[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,
10 ecto_repos: [Pleroma.Repo]
11
12 config :pleroma, Pleroma.Upload,
13 uploads: "uploads"
14
15 # Configures the endpoint
16 config :pleroma, Pleroma.Web.Endpoint,
17 url: [host: "localhost"],
18 protocol: "https",
19 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
20 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
21 pubsub: [name: Pleroma.PubSub,
22 adapter: Phoenix.PubSub.PG2]
23
24 # Configures Elixir's Logger
25 config :logger, :console,
26 format: "$time $metadata[$level] $message\n",
27 metadata: [:request_id]
28
29 config :mime, :types, %{
30 "application/xrd+xml" => ["xrd+xml"],
31 "application/activity+json" => ["activity+json"]
32 }
33
34 config :pleroma, :websub, Pleroma.Web.Websub
35 config :pleroma, :ostatus, Pleroma.Web.OStatus
36 config :pleroma, :httpoison, Pleroma.HTTP
37
38 version = with {version, 0} <- System.cmd("git", ["rev-parse", "HEAD"]) do
39 "Pleroma #{String.trim(version)}"
40 else
41 _ -> "Pleroma dev"
42 end
43
44 # Configures http settings, upstream proxy etc.
45 config :pleroma, :http,
46 proxy_url: nil
47
48 config :pleroma, :instance,
49 version: version,
50 name: "Pleroma",
51 email: "example@example.com",
52 limit: 5000,
53 registrations_open: true
54
55 config :pleroma, :media_proxy,
56 enabled: false,
57 redirect_on_failure: true
58 #base_url: "https://cache.pleroma.social"
59
60 config :pleroma, :chat,
61 enabled: true
62
63 # Import environment specific config. This must remain at the bottom
64 # of this file so it overrides the configuration defined above.
65 import_config "#{Mix.env}.exs"