From c1e7a5721e9481155af0f267bb25b17a6f0ed9d3 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Fri, 7 Feb 2025 20:09:11 +0100 Subject: [PATCH] fix(ssl): adjust ca paths for MySQL --- app/Actions/Database/StartMysql.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Actions/Database/StartMysql.php b/app/Actions/Database/StartMysql.php index bda01dc1d..2a9e37f9c 100644 --- a/app/Actions/Database/StartMysql.php +++ b/app/Actions/Database/StartMysql.php @@ -159,7 +159,7 @@ public function handle(StandaloneMysql $database) [ 'type' => 'bind', 'source' => '/data/coolify/ssl/coolify-ca.crt', - 'target' => '/etc/mysql/certs/ca.crt', + 'target' => '/etc/mysql/certs/coolify-ca.crt', 'read_only' => true, ], ] @@ -189,7 +189,7 @@ public function handle(StandaloneMysql $database) 'mysqld', '--ssl-cert=/etc/mysql/certs/server.crt', '--ssl-key=/etc/mysql/certs/server.key', - '--ssl-ca=/etc/mysql/certs/ca.crt', + '--ssl-ca=/etc/mysql/certs/coolify-ca.crt', '--require-secure-transport=1', ]; }