2017-12-08 09:58:14 +01:00
|
|
|
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
|
2018-10-11 17:37:39 +02:00
|
|
|
# MobilizonWeb.Endpoint.init/2 when load_from_system_env is
|
2017-12-08 09:58:14 +01:00
|
|
|
# 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.
|
2018-10-11 17:37:39 +02:00
|
|
|
config :mobilizon, MobilizonWeb.Endpoint,
|
2017-12-08 09:58:14 +01:00
|
|
|
load_from_system_env: true,
|
2018-11-07 16:25:17 +01:00
|
|
|
url: [
|
2019-01-03 11:33:52 +01:00
|
|
|
host: System.get_env("MOBILIZON_INSTANCE_HOST") || "mobilizon.me",
|
2019-04-11 23:53:44 +02:00
|
|
|
scheme: "https",
|
|
|
|
port: 443
|
2019-01-03 11:33:52 +01:00
|
|
|
],
|
|
|
|
http: [
|
2019-04-11 23:53:44 +02:00
|
|
|
ip: {127, 0, 0, 1},
|
2019-01-03 11:33:52 +01:00
|
|
|
port: System.get_env("MOBILIZON_INSTANCE_PORT") || 4000
|
2018-11-07 16:25:17 +01:00
|
|
|
],
|
2018-11-15 17:35:47 +01:00
|
|
|
secret_key_base:
|
|
|
|
System.get_env("MOBILIZON_SECRET") || "ThisShouldBeAVeryStrongStringPleaseReplaceMe",
|
2017-12-08 09:58:14 +01:00
|
|
|
cache_static_manifest: "priv/static/cache_manifest.json"
|
|
|
|
|
2018-11-15 17:35:47 +01:00
|
|
|
# Configure your database
|
2018-12-20 18:15:12 +01:00
|
|
|
config :mobilizon, Mobilizon.Repo,
|
2019-01-03 11:33:52 +01:00
|
|
|
types: Mobilizon.PostgresTypes,
|
2018-11-15 17:35:47 +01:00
|
|
|
username: System.get_env("MOBILIZON_DATABASE_USERNAME") || "mobilizon",
|
|
|
|
password: System.get_env("MOBILIZON_DATABASE_PASSWORD") || "mobilizon",
|
|
|
|
database: System.get_env("MOBILIZON_DATABASE_DBNAME") || "mobilizon_prod",
|
|
|
|
hostname: System.get_env("MOBILIZON_DATABASE_HOST") || "localhost",
|
|
|
|
port: System.get_env("MOBILIZON_DATABASE_PORT") || "5432",
|
|
|
|
pool_size: 15
|
|
|
|
|
2018-10-11 17:37:39 +02:00
|
|
|
config :mobilizon, Mobilizon.Mailer,
|
2018-07-04 14:29:17 +02:00
|
|
|
adapter: Bamboo.SMTPAdapter,
|
|
|
|
server: "localhost",
|
|
|
|
hostname: "localhost",
|
|
|
|
port: 25,
|
2018-07-27 10:45:35 +02:00
|
|
|
# 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,
|
2018-07-04 14:29:17 +02:00
|
|
|
retries: 1,
|
2018-07-27 10:45:35 +02:00
|
|
|
# can be `true`
|
|
|
|
no_mx_lookups: false
|
2018-07-04 14:29:17 +02:00
|
|
|
|
2017-12-08 09:58:14 +01:00
|
|
|
# Do not print debug messages in production
|
2018-11-08 16:26:14 +01:00
|
|
|
config :logger, level: System.get_env("MOBILIZON_LOGLEVEL") |> String.to_atom() || :info
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2019-03-12 11:52:28 +01:00
|
|
|
config :mobilizon, Mobilizon.Service.Geospatial, service: Mobilizon.Service.Geospatial.Nominatim
|
|
|
|
|
2017-12-08 09:58:14 +01:00
|
|
|
# ## 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:
|
|
|
|
#
|
2018-10-11 17:37:39 +02:00
|
|
|
# config :mobilizon, MobilizonWeb.Endpoint,
|
2017-12-08 09:58:14 +01:00
|
|
|
# ...
|
|
|
|
# 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:
|
|
|
|
#
|
2018-10-11 17:37:39 +02:00
|
|
|
# config :mobilizon, MobilizonWeb.Endpoint,
|
2017-12-08 09:58:14 +01:00
|
|
|
# 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:
|
|
|
|
#
|
2018-10-11 17:37:39 +02:00
|
|
|
# config :mobilizon, MobilizonWeb.Endpoint, server: true
|
2017-12-08 09:58:14 +01:00
|
|
|
#
|