Files
nextcloud/Containers/nextcloud/config/postgres.config.php
2025-09-26 10:34:07 +02:00

10 lines
215 B
PHP

<?php
if (getenv('NEXTCLOUD_TRUSTED_CERTIFICATES_POSTGRES')) {
$CONFIG = array(
'pgsql_ssl' => array(
'mode' => 'verify-ca',
'rootcert' => '/var/www/html/data/certificates/POSTGRES',
),
);
}