fix(ssl): adjust ca paths for MySQL
This commit is contained in:
parent
cd63760770
commit
c1e7a5721e
1 changed files with 2 additions and 2 deletions
|
|
@ -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',
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue