forked from AkkomaGang/akkoma
Set serve_endpoints to true in prod config as setting it in runtime
config would cause issues with mix tasks
This commit is contained in:
parent
c47dc0de2c
commit
4b98a7ce4e
1 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,8 @@
|
||||||
# which you typically run after static files are built.
|
# which you typically run after static files are built.
|
||||||
config :pleroma, Pleroma.Web.Endpoint,
|
config :pleroma, Pleroma.Web.Endpoint,
|
||||||
http: [port: 4000],
|
http: [port: 4000],
|
||||||
protocol: "http"
|
protocol: "http",
|
||||||
|
serve_endpoints: true
|
||||||
|
|
||||||
# Do not print debug messages in production
|
# Do not print debug messages in production
|
||||||
config :logger, level: :info
|
config :logger, level: :info
|
||||||
|
|
Loading…
Reference in a new issue