Merge branch 'enhancement/better-config-for-inet6' into 'master'

Better config for inet6 in prod

See merge request framasoft/mobilizon!295
This commit is contained in:
Thomas Citharel 2019-10-23 16:42:07 +02:00
commit a01b028fd9
1 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,10 @@
import Config
config :mobilizon, MobilizonWeb.Endpoint,
http: [:inet6, port: System.get_env("MOBILIZON_INSTANCE_PORT") || 4000],
http: [
port: System.get_env("MOBILIZON_INSTANCE_PORT") || 4000,
transport_options: [socket_opts: [:inet6]]
],
url: [
host: System.get_env("MOBILIZON_INSTANCE_HOST") || "mobilizon.me",
port: 443,