From 189e79805354edfe5286aac5c7951f86bf206cad Mon Sep 17 00:00:00 2001 From: rpm-mcarman <65228808+rpm-mcarman@users.noreply.github.com> Date: Mon, 1 Apr 2024 14:07:26 -0400 Subject: [PATCH] Disabled tls --- Sources/App/configure.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/App/configure.swift b/Sources/App/configure.swift index 11d23d6..7baa775 100644 --- a/Sources/App/configure.swift +++ b/Sources/App/configure.swift @@ -24,7 +24,7 @@ public func configure(_ app: Application) async throws { username: Environment.get("DATABASE_USERNAME") ?? "mcarman", password: Environment.get("DATABASE_PASSWORD") ?? "@ng31F@rm0823262", database: Environment.get("DATABASE_NAME") ?? "cm", - tls: .prefer(try .init(configuration: .clientDefault))) + tls: .disable) ), as: .psql) let timeout = HTTPClient.Configuration.Timeout(connect: .seconds(300), read: .seconds(300) )