Skip to content

Commit

Permalink
fix: disable ssl peer verification on the db
Browse files Browse the repository at this point in the history
OTP 26 changed default settings to :verify_peer but we don't have the certs
  • Loading branch information
ulfurinn committed Jul 13, 2023
1 parent 188f0f8 commit 23fdc30
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions config/prod.secret.exs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ database_url =

config :remit, Remit.Repo,
ssl: true,
ssl_opts: [verify: :verify_none],
url: database_url,
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "10")

Expand Down

0 comments on commit 23fdc30

Please sign in to comment.