aboutsummaryrefslogtreecommitdiff
path: root/config/prod.exs
diff options
context:
space:
mode:
authorHakaba Hitoyo <hakabahitoyo@yahoo.co.jp>2018-01-14 08:54:28 +0000
committerHakaba Hitoyo <hakabahitoyo@yahoo.co.jp>2018-01-14 08:54:28 +0000
commit048f61d7f86b41018214e76649c3c8588bc05a54 (patch)
tree0b73a292c1cfcdfa44dced018cb5af489688be8c /config/prod.exs
parentd49109ca17f980e118cd5ab97bc1139e3bd14402 (diff)
downloadpleroma-048f61d7f86b41018214e76649c3c8588bc05a54.tar.gz
#95 Correct prod.exs
Diffstat (limited to 'config/prod.exs')
-rw-r--r--config/prod.exs9
1 files changed, 6 insertions, 3 deletions
diff --git a/config/prod.exs b/config/prod.exs
index 732bab2b0..8522c67da 100644
--- a/config/prod.exs
+++ b/config/prod.exs
@@ -14,9 +14,12 @@ use Mix.Config
# manifest is generated by the mix phoenix.digest task
# which you typically run after static files are built.
config :pleroma, Pleroma.Web.Endpoint,
- on_init: {Pleroma.Web.Endpoint, :load_from_system_env, []},
- url: [host: "example.com", port: 80],
- cache_static_manifest: "priv/static/cache_manifest.json"
+ http: [port: 4000],
+ protocol: "http",
+ debug_errors: true,
+ code_reloader: true,
+ check_origin: false,
+ watchers: []
# Do not print debug messages in production
config :logger, level: :info