87 lines
2.8 KiB
Elixir
87 lines
2.8 KiB
Elixir
use Mix.Config
|
|
|
|
# For production, we often load configuration from external
|
|
# sources, such as your system environment. For this reason,
|
|
# you won't find the :http configuration below, but set inside
|
|
# MobilizonWeb.Endpoint.init/2 when load_from_system_env is
|
|
# true. Any dynamic configuration should be done there.
|
|
#
|
|
# Don't forget to configure the url host to something meaningful,
|
|
# Phoenix uses this information when generating URLs.
|
|
#
|
|
# Finally, we also include the path to a cache manifest
|
|
# containing the digested version of static files. This
|
|
# manifest is generated by the mix phx.digest task
|
|
# which you typically run after static files are built.
|
|
config :mobilizon, MobilizonWeb.Endpoint,
|
|
load_from_system_env: true,
|
|
url: [
|
|
host: System.get_env("MOBILIZON_HOST") || "example.com",
|
|
port: 80
|
|
],
|
|
cache_static_manifest: "priv/static/cache_manifest.json"
|
|
|
|
config :mobilizon, Mobilizon.Mailer,
|
|
adapter: Bamboo.SMTPAdapter,
|
|
server: "localhost",
|
|
hostname: "localhost",
|
|
port: 25,
|
|
# or {:system, "SMTP_USERNAME"}
|
|
username: nil,
|
|
# or {:system, "SMTP_PASSWORD"}
|
|
password: nil,
|
|
# can be `:always` or `:never`
|
|
tls: :if_available,
|
|
# or {":system", ALLOWED_TLS_VERSIONS"} w/ comma seprated values (e.g. "tlsv1.1,tlsv1.2")
|
|
allowed_tls_versions: [:tlsv1, :"tlsv1.1", :"tlsv1.2"],
|
|
# can be `true`
|
|
ssl: false,
|
|
retries: 1,
|
|
# can be `true`
|
|
no_mx_lookups: false
|
|
|
|
# Do not print debug messages in production
|
|
config :logger, level: System.get_env("MOBILIZON_LOGLEVEL") |> String.to_atom || :info
|
|
|
|
# ## SSL Support
|
|
#
|
|
# To get SSL working, you will need to add the `https` key
|
|
# to the previous section and set your `:url` port to 443:
|
|
#
|
|
# config :mobilizon, MobilizonWeb.Endpoint,
|
|
# ...
|
|
# url: [host: "example.com", port: 443],
|
|
# https: [:inet6,
|
|
# port: 443,
|
|
# keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"),
|
|
# certfile: System.get_env("SOME_APP_SSL_CERT_PATH")]
|
|
#
|
|
# Where those two env variables return an absolute path to
|
|
# the key and cert in disk or a relative path inside priv,
|
|
# for example "priv/ssl/server.key".
|
|
#
|
|
# We also recommend setting `force_ssl`, ensuring no data is
|
|
# ever sent via http, always redirecting to https:
|
|
#
|
|
# config :mobilizon, MobilizonWeb.Endpoint,
|
|
# force_ssl: [hsts: true]
|
|
#
|
|
# Check `Plug.SSL` for all available options in `force_ssl`.
|
|
|
|
# ## Using releases
|
|
#
|
|
# If you are doing OTP releases, you need to instruct Phoenix
|
|
# to start the server for all endpoints:
|
|
#
|
|
# config :phoenix, :serve_endpoints, true
|
|
#
|
|
# Alternatively, you can configure exactly which server to
|
|
# start per endpoint:
|
|
#
|
|
# config :mobilizon, MobilizonWeb.Endpoint, server: true
|
|
#
|
|
|
|
# Finally import the config/prod.secret.exs
|
|
# which should be versioned separately.
|
|
import_config "prod.secret.exs"
|