|
| 1 | +use Mix.Config |
| 2 | + |
| 3 | +# For production, we often load configuration from external |
| 4 | +# sources, such as your system environment. For this reason, |
| 5 | +# you won't find the :http configuration below, but set inside |
| 6 | +# TransactionsWeb.Endpoint.init/2 when load_from_system_env is |
| 7 | +# true. Any dynamic configuration should be done there. |
| 8 | +# |
| 9 | +# Don't forget to configure the url host to something meaningful, |
| 10 | +# Phoenix uses this information when generating URLs. |
| 11 | +# |
| 12 | +# Finally, we also include the path to a cache manifest |
| 13 | +# containing the digested version of static files. This |
| 14 | +# manifest is generated by the mix phx.digest task |
| 15 | +# which you typically run after static files are built. |
| 16 | +config :transactions_api, TransactionsWeb.Endpoint, |
| 17 | + load_from_system_env: true, |
| 18 | + url: [host: "example.com", port: 80], |
| 19 | + cache_static_manifest: "priv/static/cache_manifest.json" |
| 20 | + |
| 21 | +# Do not print debug messages in production |
| 22 | +config :logger, level: :info |
| 23 | + |
| 24 | +# ## SSL Support |
| 25 | +# |
| 26 | +# To get SSL working, you will need to add the `https` key |
| 27 | +# to the previous section and set your `:url` port to 443: |
| 28 | +# |
| 29 | +# config :transactions_api, TransactionsWeb.Endpoint, |
| 30 | +# ... |
| 31 | +# url: [host: "example.com", port: 443], |
| 32 | +# https: [:inet6, |
| 33 | +# port: 443, |
| 34 | +# keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"), |
| 35 | +# certfile: System.get_env("SOME_APP_SSL_CERT_PATH")] |
| 36 | +# |
| 37 | +# Where those two env variables return an absolute path to |
| 38 | +# the key and cert in disk or a relative path inside priv, |
| 39 | +# for example "priv/ssl/server.key". |
| 40 | +# |
| 41 | +# We also recommend setting `force_ssl`, ensuring no data is |
| 42 | +# ever sent via http, always redirecting to https: |
| 43 | +# |
| 44 | +# config :transactions_api, TransactionsWeb.Endpoint, |
| 45 | +# force_ssl: [hsts: true] |
| 46 | +# |
| 47 | +# Check `Plug.SSL` for all available options in `force_ssl`. |
| 48 | + |
| 49 | +# ## Using releases |
| 50 | +# |
| 51 | +# If you are doing OTP releases, you need to instruct Phoenix |
| 52 | +# to start the server for all endpoints: |
| 53 | +# |
| 54 | +# config :phoenix, :serve_endpoints, true |
| 55 | +# |
| 56 | +# Alternatively, you can configure exactly which server to |
| 57 | +# start per endpoint: |
| 58 | +# |
| 59 | +# config :transactions_api, TransactionsWeb.Endpoint, server: true |
| 60 | +# |
| 61 | + |
| 62 | +# Finally import the config/prod.secret.exs |
| 63 | +# which should be versioned separately. |
| 64 | +import_config "prod.secret.exs" |
0 commit comments