mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-22 15:36:52 +00:00
5 lines
255 B
PHP
5 lines
255 B
PHP
<?php
|
|
// Check if NEXTCLOUD_TRUSTED_CERTIFICATES_ are configured
|
|
if (str_contains(implode(' ', array_keys(getenv())), 'NEXTCLOUD_TRUSTED_CERTIFICATES_')) {
|
|
$CONFIG['default_certificates_bundle_path'] = '/var/www/html/data/certificates/ca-bundle.crt';
|
|
}
|