pull/4/head
AdamSBlack 2022-01-06 20:07:39 +00:00
commit 36a1cbdda1
2 changed files with 3 additions and 3 deletions

View File

@ -151,10 +151,10 @@ lockfile.lock('retropilot_server.lock', {realpath: false, stale: 30000, update:
httpServer.listen(config.httpPort, config.httpInterface, () => {
logger.info(`Retropilot Server listening at http://` + config.httpInterface + `:` + config.httpPort)
logger.info(`Retropilot Server listening at http://${config.httpInterface}:${config.httpPort}`)
});
httpsServer.listen(config.httpsPort, config.httpsInterface, () => {
logger.info(`Retropilot Server listening at https://` + config.httpsInterface + `:` + config.httpsPort)
logger.info(`Retropilot Server listening at https://${config.httpsInterface}:${config.httpsPort}`)
});
})();

View File

@ -27,7 +27,7 @@ function __server() {
wss = new WebSocket.WebSocketServer({ server }, { path: '/realtime/v1', handshakeTimeout: 500 });
server.listen(81, () => {
server.listen(config.athena.port, config.athena.host, () => {
logger.info(`Web(Server) - UP @ ${config.athena.host}:${config.athena.port}`)
})