Merge pull request #7462 from nextcloud/enh/noid/fix-mysql-config

postgres.config.php: fix `PDO::MYSQL_ATTR_SSL_CA`
This commit is contained in:
Simon L.
2026-01-20 13:13:36 +01:00
committed by GitHub

View File

@@ -10,7 +10,7 @@ if (getenv('NEXTCLOUD_TRUSTED_CERTIFICATES_POSTGRES')) {
if (getenv('NEXTCLOUD_TRUSTED_CERTIFICATES_MYSQL')) {
$CONFIG = array(
'dbdriveroptions' => array(
'PDO::MYSQL_ATTR_SSL_CA' => '/var/www/html/data/certificates/ca-bundle.crt',
PDO::MYSQL_ATTR_SSL_CA => '/var/www/html/data/certificates/ca-bundle.crt',
),
);
}