config: disable SSL/TLS for database connections

Adds ssl: false to Repo config to disable database encryption.
This commit is contained in:
Graham McIntire 2026-03-22 10:58:30 -05:00
parent bc6fdcd9c2
commit d87ef4dac5
No known key found for this signature in database

View file

@ -58,6 +58,8 @@ if config_env() == :prod do
config :aprsme, Aprsme.Repo,
url: database_url,
# Disable SSL/TLS for database connections
ssl: false,
# Increased pool size for better concurrency (was 25)
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "45"),
# Increased timeout for ARM system under load