Fix config requiring boolean

This commit is contained in:
oscar 2023-04-12 11:34:23 +00:00
parent 53782bf6e6
commit 4a9121825f
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ config :mobilizon, Mobilizon.Storage.Repo,
database: System.get_env("MOBILIZON_DATABASE_DBNAME", "mobilizon"),
hostname: System.get_env("MOBILIZON_DATABASE_HOST", "postgres"),
port: System.get_env("MOBILIZON_DATABASE_PORT", "5432"),
ssl: System.get_env("MOBILIZON_DATABASE_SSL", false),
ssl: System.get_env("MOBILIZON_DATABASE_SSL", "false") == "true",
pool_size: 10
config :mobilizon, Mobilizon.Web.Email.Mailer,