Merge branch 'moonman/pleroma-sha512-crypt' into 'develop'
[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
25 config :pleroma, :emoji, shortcode_globs: ["/emoji/custom/**/*.png"]
26
27 config :pleroma, :uri_schemes, additionnal_schemes: []
28
29 # Configures the endpoint
30 config :pleroma, Pleroma.Web.Endpoint,
31 url: [host: "localhost"],
32 protocol: "https",
33 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
34 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
35 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
36 secure_cookie_flag: true
37
38 # Configures Elixir's Logger
39 config :logger, :console,
40 format: "$time $metadata[$level] $message\n",
41 metadata: [:request_id]
42
43 config :mime, :types, %{
44 "application/xml" => ["xml"],
45 "application/xrd+xml" => ["xrd+xml"],
46 "application/activity+json" => ["activity+json"],
47 "application/ld+json" => ["activity+json"]
48 }
49
50 config :pleroma, :websub, Pleroma.Web.Websub
51 config :pleroma, :ostatus, Pleroma.Web.OStatus
52 config :pleroma, :httpoison, Pleroma.HTTP
53
54 version =
55 with {version, 0} <- System.cmd("git", ["rev-parse", "HEAD"]) do
56 "Pleroma #{Mix.Project.config()[:version]} #{String.trim(version)}"
57 else
58 _ -> "Pleroma #{Mix.Project.config()[:version]} dev"
59 end
60
61 # Configures http settings, upstream proxy etc.
62 config :pleroma, :http, proxy_url: nil
63
64 config :pleroma, :instance,
65 version: version,
66 name: "Pleroma",
67 email: "example@example.com",
68 description: "A Pleroma instance, an alternative fediverse server",
69 limit: 5000,
70 upload_limit: 16_000_000,
71 registrations_open: true,
72 federating: true,
73 allow_relay: true,
74 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
75 public: true,
76 quarantined_instances: [],
77 managed_config: true
78
79 config :pleroma, :fe,
80 theme: "pleroma-dark",
81 logo: "/static/logo.png",
82 logo_mask: true,
83 logo_margin: "0.1em",
84 background: "/static/aurora_borealis.jpg",
85 redirect_root_no_login: "/main/all",
86 redirect_root_login: "/main/friends",
87 show_instance_panel: true,
88 scope_options_enabled: false,
89 collapse_message_with_subject: false
90
91 config :pleroma, :activitypub,
92 accept_blocks: true,
93 unfollow_blocked: true,
94 outgoing_blocks: true
95
96 config :pleroma, :user, deny_follow_blocked: true
97
98 config :pleroma, :mrf_rejectnonpublic,
99 allow_followersonly: false,
100 allow_direct: false
101
102 config :pleroma, :mrf_simple,
103 media_removal: [],
104 media_nsfw: [],
105 federated_timeline_removal: [],
106 reject: [],
107 accept: []
108
109 config :pleroma, :media_proxy,
110 enabled: false,
111 redirect_on_failure: true
112
113 # base_url: "https://cache.pleroma.social"
114
115 config :pleroma, :chat, enabled: true
116
117 config :ecto, json_library: Jason
118
119 config :phoenix, :format_encoders, json: Jason
120
121 config :pleroma, :gopher,
122 enabled: false,
123 ip: {0, 0, 0, 0},
124 port: 9999
125
126 config :pleroma, :suggestions,
127 enabled: false,
128 third_party_engine:
129 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
130 timeout: 300_000,
131 web: "https://vinayaka.distsn.org/?{{host}}+{{user}}"
132
133 # Import environment specific config. This must remain at the bottom
134 # of this file so it overrides the configuration defined above.
135 import_config "#{Mix.env()}.exs"