mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
10 lines
215 B
PHP
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',
|
||
|
|
),
|
||
|
|
);
|
||
|
|
}
|