philomena/config/prod.secret.exs

47 lines
1.4 KiB
Elixir
Raw Normal View History

2019-08-15 02:32:32 +02:00
# In this file, we load production configuration and secrets
# from environment variables. You can also hardcode secrets,
# although such is generally not recommended and you have to
# remember to add this file to your .gitignore.
use Mix.Config
database_url =
System.get_env("DATABASE_URL") ||
raise """
environment variable DATABASE_URL is missing.
For example: ecto://USER:PASS@HOST/DATABASE
"""
2019-08-16 02:28:12 +02:00
config :bcrypt_elixir,
log_rounds: String.to_integer(System.get_env("BCRYPT_ROUNDS") || "12")
config :philomena,
2019-08-18 18:17:05 +02:00
password_pepper: System.get_env("PASSWORD_PEPPER"),
image_url_root: System.get_env("IMAGE_URL_ROOT")
2019-08-16 02:28:12 +02:00
2019-08-15 02:32:32 +02:00
config :philomena, Philomena.Repo,
# ssl: true,
url: database_url,
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "10")
secret_key_base =
System.get_env("SECRET_KEY_BASE") ||
raise """
environment variable SECRET_KEY_BASE is missing.
You can generate one by calling: mix phx.gen.secret
"""
config :philomena, PhilomenaWeb.Endpoint,
http: [:inet6, port: String.to_integer(System.get_env("PORT") || "4000")],
2019-08-16 02:28:12 +02:00
secret_key_base: secret_key_base,
server: true
2019-08-15 02:32:32 +02:00
# ## Using releases (Elixir v1.9+)
#
# If you are doing OTP releases, you need to instruct Phoenix
# to start each relevant endpoint:
#
# config :philomena, PhilomenaWeb.Endpoint, server: true
#
# Then you can assemble a release by calling `mix release`.
# See `mix help release` for more information.