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.
|
2019-12-04 16:35:16 +01:00
|
|
|
import Config
|
2019-08-15 02:32:32 +02:00
|
|
|
|
|
|
|
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-12-07 16:16:59 +01:00
|
|
|
channel_image_file_root: System.get_env("CHANNEL_IMAGE_FILE_ROOT"),
|
|
|
|
channel_banner_file_root: System.get_env("CHANNEL_BANNER_FILE_ROOT"),
|
2019-11-11 17:56:34 +01:00
|
|
|
anonymous_name_salt: System.get_env("ANONYMOUS_NAME_SALT"),
|
2019-12-07 16:16:59 +01:00
|
|
|
advert_file_root: System.get_env("ADVERT_FILE_ROOT"),
|
2019-12-07 17:49:27 +01:00
|
|
|
avatar_file_root: System.get_env("AVATAR_FILE_ROOT"),
|
2019-11-30 07:30:45 +01:00
|
|
|
channel_url_root: System.get_env("CHANNEL_URL_ROOT"),
|
2019-12-07 16:16:59 +01:00
|
|
|
badge_file_root: System.get_env("BADGE_FILE_ROOT"),
|
2019-08-18 18:17:05 +02:00
|
|
|
password_pepper: System.get_env("PASSWORD_PEPPER"),
|
2019-11-11 18:25:51 +01:00
|
|
|
avatar_url_root: System.get_env("AVATAR_URL_ROOT"),
|
2019-11-29 07:26:05 +01:00
|
|
|
advert_url_root: System.get_env("ADVERT_URL_ROOT"),
|
2019-11-27 02:45:57 +01:00
|
|
|
image_file_root: System.get_env("IMAGE_FILE_ROOT"),
|
2019-11-28 18:12:10 +01:00
|
|
|
tumblr_api_key: System.get_env("TUMBLR_API_KEY"),
|
2019-11-01 03:45:34 +01:00
|
|
|
otp_secret_key: System.get_env("OTP_SECRET_KEY"),
|
2019-11-11 00:35:52 +01:00
|
|
|
image_url_root: System.get_env("IMAGE_URL_ROOT"),
|
2019-11-12 02:27:09 +01:00
|
|
|
badge_url_root: System.get_env("BADGE_URL_ROOT"),
|
2019-11-15 03:48:08 +01:00
|
|
|
mailer_address: System.get_env("MAILER_ADDRESS"),
|
2019-12-07 16:16:59 +01:00
|
|
|
tag_file_root: System.get_env("TAG_FILE_ROOT"),
|
2019-11-29 20:59:55 +01:00
|
|
|
tag_url_root: System.get_env("TAG_URL_ROOT"),
|
2019-11-28 18:12:10 +01:00
|
|
|
proxy_host: System.get_env("PROXY_HOST"),
|
2019-11-11 00:35:52 +01:00
|
|
|
camo_host: System.get_env("CAMO_HOST"),
|
|
|
|
camo_key: System.get_env("CAMO_KEY"),
|
|
|
|
cdn_host: System.get_env("CDN_HOST")
|
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,
|
2020-01-31 14:57:09 +01:00
|
|
|
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "32")
|
2019-08-15 02:32:32 +02:00
|
|
|
|
2019-11-15 03:40:35 +01:00
|
|
|
config :philomena, PhilomenaWeb.Mailer,
|
|
|
|
adapter: Bamboo.SMTPAdapter,
|
|
|
|
server: System.get_env("SMTP_RELAY"),
|
|
|
|
hostname: System.get_env("SMTP_DOMAIN"),
|
|
|
|
port: System.get_env("SMTP_PORT") || 587,
|
|
|
|
username: System.get_env("SMTP_USERNAME"),
|
|
|
|
password: System.get_env("SMTP_PASSWORD"),
|
|
|
|
tls: :always,
|
|
|
|
auth: :always
|
|
|
|
|
2019-08-15 02:32:32 +02:00
|
|
|
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,
|
2020-04-07 06:56:03 +02:00
|
|
|
http: [ip: {127, 0, 0, 1}, port: {:system, "PORT"}],
|
2019-11-15 04:11:39 +01:00
|
|
|
url: [host: System.get_env("APP_HOSTNAME"), scheme: "https", port: 443],
|
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.
|