chore: update prod configuration to run on the right port

This commit is contained in:
danilo silva 2020-05-22 20:29:59 +00:00
parent 873a201203
commit 2b10644798

View file

@ -10,8 +10,14 @@ use Mix.Config
# which you should run after static files are built and
# before starting your production server.
config :podcast_feed, PodcastFeedWeb.Endpoint,
url: [host: "example.com", port: 80],
cache_static_manifest: "priv/static/cache_manifest.json"
load_from_system_env: true,
url: [scheme: "https", host: "podcast.herokuapp.com", port: 443],
http: [port: {:system, "PORT"}],
cache_static_manifest: "priv/static/cache_manifest.json",
server: true,
root: ".",
version: Application.spec(:phoenix_distillery, :vsn),
force_ssl: [rewrite_on: [:x_forwarded_proto]]
# Do not print debug messages in production
config :logger, level: :info