559a12a91dc0bfeb140c7689acd5722183ffa7eb
[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, :markup,
80 scrub_policy: HtmlSanitizeEx.Scrubber.BasicHTML
81
82 config :pleroma, :fe,
83 theme: "pleroma-dark",
84 logo: "/static/logo.png",
85 logo_mask: true,
86 logo_margin: "0.1em",
87 background: "/static/aurora_borealis.jpg",
88 redirect_root_no_login: "/main/all",
89 redirect_root_login: "/main/friends",
90 show_instance_panel: true,
91 scope_options_enabled: false,
92 collapse_message_with_subject: false
93
94 config :pleroma, :activitypub,
95 accept_blocks: true,
96 unfollow_blocked: true,
97 outgoing_blocks: true
98
99 config :pleroma, :user, deny_follow_blocked: true
100
101 config :pleroma, :mrf_rejectnonpublic,
102 allow_followersonly: false,
103 allow_direct: false
104
105 config :pleroma, :mrf_simple,
106 media_removal: [],
107 media_nsfw: [],
108 federated_timeline_removal: [],
109 reject: [],
110 accept: []
111
112 config :pleroma, :media_proxy,
113 enabled: false,
114 redirect_on_failure: true
115
116 # base_url: "https://cache.pleroma.social"
117
118 config :pleroma, :chat, enabled: true
119
120 config :ecto, json_library: Jason
121
122 config :phoenix, :format_encoders, json: Jason
123
124 config :pleroma, :gopher,
125 enabled: false,
126 ip: {0, 0, 0, 0},
127 port: 9999
128
129 config :pleroma, :suggestions,
130 enabled: false,
131 third_party_engine:
132 "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
133 timeout: 300_000,
134 limit: 23,
135 web: "https://vinayaka.distsn.org/?{{host}}+{{user}}"
136
137 # Import environment specific config. This must remain at the bottom
138 # of this file so it overrides the configuration defined above.
139 import_config "#{Mix.env()}.exs"