diff options
author | rinpatch <rinpatch@sdf.org> | 2019-06-08 21:26:00 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-06-08 21:27:39 +0300 |
commit | b6d2db42a759354bb21e2385021dfb6acfe29ef2 (patch) | |
tree | 12d6019b6957ef748fbad8aa07badcb347d5f22e /config/prod.exs | |
parent | 7223c1b643874f368937969be441c42f7eb55d14 (diff) | |
download | pleroma-b6d2db42a759354bb21e2385021dfb6acfe29ef2.tar.gz |
Fix wrong placement of serve_endpoints
Diffstat (limited to 'config/prod.exs')
-rw-r--r-- | config/prod.exs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config/prod.exs b/config/prod.exs index cd5cdb087..adc1c4bb7 100644 --- a/config/prod.exs +++ b/config/prod.exs @@ -15,8 +15,9 @@ use Mix.Config # which you typically run after static files are built. config :pleroma, Pleroma.Web.Endpoint, http: [port: 4000], - protocol: "http", - serve_endpoints: true + protocol: "http" + +config :phoenix, serve_endpoints: true # Do not print debug messages in production config :logger, level: :info |