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