Skip to content

Commit cf42c44

Browse files
committed
fix: correct ssl.pfxPassphrase key to ssl.pfx.passphrase in server configuration
1 parent be71e6a commit cf42c44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const server = {
77
hostname: process.env['server.hostname'] || 'localhost',
88
ssl: process.env['server.ssl'] === 'true' || false,
99
'ssl.pfx': process.env['server.ssl.pfx'] || 'localhost.pfx',
10-
'ssl.pfxPassphrase': process.env['server.ssl.pfxPassphrase'] || 'PFX_PASSPHRASE',
10+
'ssl.pfx.passphrase': process.env['server.ssl.pfx.passphrase'] || 'PFX_PASSPHRASE',
1111
};
1212

1313
const logger = {

0 commit comments

Comments
 (0)