70 lines
2.3 KiB
Elixir
70 lines
2.3 KiB
Elixir
import Config
|
|
|
|
# Configure your database
|
|
config :bump, Bump.Repo,
|
|
username: "postgres",
|
|
password: "postgres",
|
|
database: "bump_dev",
|
|
hostname: "database",
|
|
port: 5555,
|
|
show_sensitive_data_on_connection_error: false,
|
|
pool_size: 10
|
|
|
|
# For production, don't forget to configure the url host
|
|
# to something meaningful, Phoenix uses this information
|
|
# when generating URLs.
|
|
#
|
|
# Note 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 should run after static files are built and
|
|
# before starting your production server.
|
|
config :bump, BumpWeb.Endpoint,
|
|
http: [ip: {0, 0, 0, 0}, port: 4012],
|
|
check_origin: false,
|
|
code_reloader: false,
|
|
debug_errors: false,
|
|
cache_static_manifest: "priv/static/cache_manifest.json",
|
|
secret_key_base: "c/uw9+syw3QefW2JeS+JzMihBKTfVB6C4d/9cmStSynygaP91BLoxbPVedBJIU6p",
|
|
watchers: [
|
|
# Start the esbuild watcher by calling Esbuild.install_and_run(:default, args)
|
|
esbuild: {Esbuild, :install_and_run, [:default, ~w(--sourcemap=inline --watch)]}
|
|
]
|
|
|
|
# Do not print debug messages in production
|
|
config :logger, level: :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 :bump, BumpWeb.Endpoint,
|
|
# ...,
|
|
# url: [host: "example.com", port: 443],
|
|
# https: [
|
|
# ...,
|
|
# port: 443,
|
|
# cipher_suite: :strong,
|
|
# keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"),
|
|
# certfile: System.get_env("SOME_APP_SSL_CERT_PATH")
|
|
# ]
|
|
#
|
|
# The `cipher_suite` is set to `:strong` to support only the
|
|
# latest and more secure SSL ciphers. This means old browsers
|
|
# and clients may not be supported. You can set it to
|
|
# `:compatible` for wider support.
|
|
#
|
|
# `:keyfile` and `:certfile` expect an absolute path to the key
|
|
# and cert in disk or a relative path inside priv, for example
|
|
# "priv/ssl/server.key". For all supported SSL configuration
|
|
# options, see https://hexdocs.pm/plug/Plug.SSL.html#configure/1
|
|
#
|
|
# We also recommend setting `force_ssl` in your endpoint, ensuring
|
|
# no data is ever sent via http, always redirecting to https:
|
|
#
|
|
# config :bump, BumpWeb.Endpoint,
|
|
# force_ssl: [hsts: true]
|
|
#
|
|
# Check `Plug.SSL` for all available options in `force_ssl`.
|