From 08b22bff50a2aad51888b5f05e24b1b5dd6bda5e Mon Sep 17 00:00:00 2001 From: Daniel Barber Date: Sat, 4 Jan 2025 12:19:51 -0600 Subject: [PATCH] Update prod.exs Turn off SSL for the database connection. --- config/prod.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/prod.exs b/config/prod.exs index a562758..206aad7 100644 --- a/config/prod.exs +++ b/config/prod.exs @@ -19,5 +19,5 @@ config :chess, Chess.Repo, adapter: Ecto.Adapters.Postgres, url: System.get_env("DATABASE_URL"), database: "", - ssl: true, + ssl: false, pool_size: 1