do not use bundle terminology
apparently, bundle is also like a cert chain
This commit is contained in:
@@ -278,11 +278,11 @@ async function start() {
|
||||
|
||||
const domainObject = await domains.get(settings.dashboardDomain());
|
||||
const dashboardFqdn = dns.fqdn(constants.DASHBOARD_LOCATION, domainObject);
|
||||
const bundle = await reverseproxy.getCertificatePath(dashboardFqdn, domainObject.domain);
|
||||
const certificatePath = await reverseproxy.getCertificatePath(dashboardFqdn, domainObject.domain);
|
||||
|
||||
gServer = ldap.createServer({
|
||||
certificate: fs.readFileSync(bundle.certFilePath, 'utf8'),
|
||||
key: fs.readFileSync(bundle.keyFilePath, 'utf8'),
|
||||
certificate: fs.readFileSync(certificatePath.certFilePath, 'utf8'),
|
||||
key: fs.readFileSync(certificatePath.keyFilePath, 'utf8'),
|
||||
log: logger
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user