Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma into develop
[akkoma] / config / prod.exs
1 use Mix.Config
2
3 # For production, we often load configuration from external
4 # sources, such as your system environment. For this reason,
5 # you won't find the :http configuration below, but set inside
6 # Pleroma.Web.Endpoint.load_from_system_env/1 dynamically.
7 # Any dynamic configuration should be moved to such function.
8 #
9 # Don't forget to configure the url host to something meaningful,
10 # Phoenix uses this information when generating URLs.
11 #
12 # Finally, we also include the path to a cache manifest
13 # containing the digested version of static files. This
14 # manifest is generated by the mix phoenix.digest task
15 # which you typically run after static files are built.
16 config :pleroma, Pleroma.Web.Endpoint,
17 http: [port: 4000],
18 protocol: "http"
19
20 config :phoenix, serve_endpoints: true
21
22 # Do not print debug messages in production
23 config :logger, :console, level: :warn
24
25 # ## SSL Support
26 #
27 # To get SSL working, you will need to add the `https` key
28 # to the previous section and set your `:url` port to 443:
29 #
30 # config :pleroma, Pleroma.Web.Endpoint,
31 # ...
32 # url: [host: "example.com", port: 443],
33 # https: [:inet6,
34 # port: 443,
35 # keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"),
36 # certfile: System.get_env("SOME_APP_SSL_CERT_PATH")]
37 #
38 # Where those two env variables return an absolute path to
39 # the key and cert in disk or a relative path inside priv,
40 # for example "priv/ssl/server.key".
41 #
42 # We also recommend setting `force_ssl`, ensuring no data is
43 # ever sent via http, always redirecting to https:
44 #
45 # config :pleroma, Pleroma.Web.Endpoint,
46 # force_ssl: [hsts: true]
47 #
48 # Check `Plug.SSL` for all available options in `force_ssl`.
49
50 # ## Using releases
51 #
52 # If you are doing OTP releases, you need to instruct Phoenix
53 # to start the server for all endpoints:
54 #
55 # config :phoenix, :serve_endpoints, true
56 #
57 # Alternatively, you can configure exactly which server to
58 # start per endpoint:
59 #
60 # config :pleroma, Pleroma.Web.Endpoint, server: true
61 #
62
63 # Finally import the config/prod.secret.exs
64 # which should be versioned separately.
65 import_config "prod.secret.exs"
66
67 if File.exists?("./config/prod.exported_from_db.secret.exs"),
68 do: import_config("prod.exported_from_db.secret.exs")