Skip to content

Commit 0962b78

Browse files
committed
Get port from config
1 parent 9eaa5dd commit 0962b78

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

server/server.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ const config = require('./init/configuration')
55
const log = require('kth-node-log')
66

77
server.start({
8-
pfx:config.full.ssl.pfx,
9-
passphrase:config.full.ssl.passphrase,
10-
key:config.full.ssl.key,
11-
ca:config.full.ssl.ca,
8+
pfx: config.full.ssl.pfx,
9+
passphrase: config.full.ssl.passphrase,
10+
key: config.full.ssl.key,
11+
ca: config.full.ssl.ca,
1212
cert: config.full.ssl.cert,
13-
port:3333,
13+
port: config.full.port,
1414
log
1515
})
1616

0 commit comments

Comments
 (0)