From d74c578a4a7fc6be460de6141a66e9d85217e9d8 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Tue, 11 Feb 2025 20:34:45 +0100 Subject: [PATCH] fix(ssl): add `--tls` arg to DrangflyDB --- app/Actions/Database/StartDragonfly.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Actions/Database/StartDragonfly.php b/app/Actions/Database/StartDragonfly.php index c9a2f173c..99bb5fa89 100644 --- a/app/Actions/Database/StartDragonfly.php +++ b/app/Actions/Database/StartDragonfly.php @@ -197,6 +197,7 @@ class StartDragonfly if ($this->database->enable_ssl) { $sslArgs = [ + '--tls', '--tls_cert_file /etc/dragonfly/certs/server.crt', '--tls_key_file /etc/dragonfly/certs/server.key', '--tls_ca_cert_file /etc/dragonfly/certs/coolify-ca.crt',