24 lines
871 B
1
import 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.
8
config :blog, BlogWeb.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json"
9
10
# Configures Swoosh API Client
11
config :swoosh, api_client: Swoosh.ApiClient.Finch, finch_name: Blog.Finch
12
13
# Disable Swoosh Local Memory Storage
14
config :swoosh, local: false
15
16
# Do not print debug messages in production
17
config :logger, level: :info
18
19
# Runtime production configuration, including reading
20
# of environment variables, is done on config/runtime.exs.
21
22
config :blog, BlogWeb.Endpoint,
23
url: [scheme: "https", host: "bobbby.online", port: 443],
24
force_ssl: [rewrite_on: [:x_forwarded_proto]]
25