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
commit f117a441fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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',
),
);
}