config: disable SSL/TLS for database connections
Adds ssl: false to Repo config to disable database encryption.
This commit is contained in:
parent
bc6fdcd9c2
commit
d87ef4dac5
1 changed files with 2 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue