|
|
|
@ -14,12 +14,13 @@ use Mix.Config |
|
|
|
|
# manifest is generated by the mix phx.digest task |
|
|
|
|
# which you typically run after static files are built. |
|
|
|
|
config :explorer, ExplorerWeb.Endpoint, |
|
|
|
|
load_from_system_env: true, |
|
|
|
|
url: [scheme: "https", host: Map.fetch!(System.get_env(), "HEROKU_APP_NAME") <> ".herokuapp.com", port: 443], |
|
|
|
|
force_ssl: [rewrite_on: [:x_forwarded_proto]], |
|
|
|
|
cache_static_manifest: "priv/static/cache_manifest.json", |
|
|
|
|
force_ssl: [rewrite_on: [:x_forwarded_proto]], |
|
|
|
|
instrumenters: [NewRelixir.Instrumenters.Phoenix], |
|
|
|
|
load_from_system_env: true, |
|
|
|
|
pubsub: [adapter: Phoenix.PubSub.Redis, url: Map.fetch!(System.get_env(), "REDIS_URL"), node_name: System.get_env("DYNO")], |
|
|
|
|
secret_key_base: Map.fetch!(System.get_env(), "SECRET_KEY_BASE"), |
|
|
|
|
pubsub: [adapter: Phoenix.PubSub.Redis, url: Map.fetch!(System.get_env(), "REDIS_URL"), node_name: System.get_env("DYNO")] |
|
|
|
|
url: [scheme: "https", host: Map.fetch!(System.get_env(), "HEROKU_APP_NAME") <> ".herokuapp.com", port: 443] |
|
|
|
|
|
|
|
|
|
# Do not print debug messages in production |
|
|
|
|
config :logger, level: :info |
|
|
|
@ -31,9 +32,6 @@ config :explorer, Explorer.Repo, |
|
|
|
|
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "10"), |
|
|
|
|
ssl: true |
|
|
|
|
|
|
|
|
|
config :explorer, ExplorerWeb.Endpoint, |
|
|
|
|
instrumenters: [NewRelixir.Instrumenters.Phoenix], |
|
|
|
|
|
|
|
|
|
config :new_relixir, |
|
|
|
|
application_name: System.get_env("NEW_RELIC_APP_NAME"), |
|
|
|
|
license_key: System.get_env("NEW_RELIC_LICENSE_KEY") |
|
|
|
|