From 1cb8685bf8dc71d3b7554139bc6b58218bc71a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Garrido=20Tamarit?= <33375539+igarridot@users.noreply.github.com> Date: Mon, 12 Feb 2024 12:52:12 +0100 Subject: [PATCH] Disable SSL database verficiation (#184) --- config/releases.exs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/releases.exs b/config/releases.exs index d5a4746c..1a0995c1 100644 --- a/config/releases.exs +++ b/config/releases.exs @@ -17,7 +17,8 @@ config :postoffice, Postoffice.Repo, port: {:system, "DB_PORT", type: :integer, default: 5432}, pool_size: {:system, "DB_POOL_SIZE", type: :integer, default: 20}, queue_target: {:system, "DB_QUEUE_TARGET", type: :integer, default: 3000}, - show_sensitive_data_on_connection_error: false + show_sensitive_data_on_connection_error: false, + ssl_opts: [verify: :verify_none] config :sentry, dsn: {:system, "POSTOFFICE_SENTRY_DSN", default: ""},