1import Config
2
3# Note we also include the path to a cache manifest
4# containing the digested version of static files. This
5# manifest is generated by the `mix assets.deploy` task,
6# which you should run after static files are built and
7# before starting your production server.
8config :comet, CometWeb.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json"
9
10# Force using SSL in production. This also sets the "strict-security-transport" header,
11# also known as HSTS. `:force_ssl` is required to be set at compile-time.
12config :comet, CometWeb.Endpoint, force_ssl: [rewrite_on: [:x_forwarded_proto]]
13
14# Configure Swoosh API Client
15config :swoosh, api_client: Swoosh.ApiClient.Req
16
17# Disable Swoosh Local Memory Storage
18config :swoosh, local: false
19
20# Do not print debug messages in production
21config :logger, level: :info
22
23# Runtime production configuration, including reading
24# of environment variables, is done on config/runtime.exs.