Merge remote-tracking branch 'upstream/develop' into feature/filter_exif
[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 uploads: "uploads",
15 strip_exif: false
16
17 config :pleroma, :emoji, shortcode_globs: ["/emoji/custom/**/*.png"]
18
19 # Configures the endpoint
20 config :pleroma, Pleroma.Web.Endpoint,
21 url: [host: "localhost"],
22 protocol: "https",
23 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
24 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
25 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2]
26
27 # Configures Elixir's Logger
28 config :logger, :console,
29 format: "$time $metadata[$level] $message\n",
30 metadata: [:request_id]
31
32 config :mime, :types, %{
33 "application/xml" => ["xml"],
34 "application/xrd+xml" => ["xrd+xml"],
35 "application/activity+json" => ["activity+json"],
36 "application/ld+json" => ["activity+json"]
37 }
38
39 config :pleroma, :websub, Pleroma.Web.Websub
40 config :pleroma, :ostatus, Pleroma.Web.OStatus
41 config :pleroma, :httpoison, Pleroma.HTTP
42
43 version =
44 with {version, 0} <- System.cmd("git", ["rev-parse", "HEAD"]) do
45 "Pleroma #{Mix.Project.config()[:version]} #{String.trim(version)}"
46 else
47 _ -> "Pleroma #{Mix.Project.config()[:version]} dev"
48 end
49
50 # Configures http settings, upstream proxy etc.
51 config :pleroma, :http, proxy_url: nil
52
53 config :pleroma, :instance,
54 version: version,
55 name: "Pleroma",
56 email: "example@example.com",
57 limit: 5000,
58 upload_limit: 16_000_000,
59 registrations_open: true,
60 federating: true,
61 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
62 public: true,
63 quarantined_instances: []
64
65 config :pleroma, :activitypub,
66 accept_blocks: true,
67 unfollow_blocked: true,
68 outgoing_blocks: true
69
70 config :pleroma, :user, deny_follow_blocked: true
71
72 config :pleroma, :mrf_rejectnonpublic,
73 allow_followersonly: false,
74 allow_direct: false
75
76 config :pleroma, :mrf_simple,
77 media_removal: [],
78 media_nsfw: [],
79 federated_timeline_removal: [],
80 reject: [],
81 accept: []
82
83 config :pleroma, :media_proxy,
84 enabled: false,
85 redirect_on_failure: true
86
87 # base_url: "https://cache.pleroma.social"
88
89 config :pleroma, :chat, enabled: true
90
91 config :ecto, json_library: Jason
92
93 config :phoenix, :format_encoders, json: Jason
94
95 config :pleroma, :gopher,
96 enabled: false,
97 ip: {0, 0, 0, 0},
98 port: 9999
99
100 # Import environment specific config. This must remain at the bottom
101 # of this file so it overrides the configuration defined above.
102 import_config "#{Mix.env()}.exs"