diff options
author | rinpatch <rinpatch@sdf.org> | 2019-06-08 17:17:28 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-06-08 17:17:28 +0300 |
commit | 4b98a7ce4ef4b4e7b74f533e6d6ed343e1b34c48 (patch) | |
tree | fd9277dbd5f689f1e22eb0c34d2d6447d7990628 /config/prod.exs | |
parent | c47dc0de2c567195206523a057c7df067d6fb076 (diff) | |
download | pleroma-4b98a7ce4ef4b4e7b74f533e6d6ed343e1b34c48.tar.gz |
Set serve_endpoints to true in prod config as setting it in runtime
config would cause issues with mix tasks
Diffstat (limited to 'config/prod.exs')
-rw-r--r-- | config/prod.exs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/prod.exs b/config/prod.exs index d0cfd1ac2..cd5cdb087 100644 --- a/config/prod.exs +++ b/config/prod.exs @@ -15,7 +15,8 @@ use Mix.Config # which you typically run after static files are built. config :pleroma, Pleroma.Web.Endpoint, http: [port: 4000], - protocol: "http" + protocol: "http", + serve_endpoints: true # Do not print debug messages in production config :logger, level: :info |