update ports

stable
Bronwen 2021-02-14 02:21:35 -05:00
parent 6685ff1ae1
commit 1336042b88
2 changed files with 4 additions and 4 deletions

View File

@ -94,13 +94,13 @@ app.get('/', (req, res) => {
// app.post
app.listen(8080).on('error', e => {
app.listen(config.ports.http).on('error', e => {
log.warn(e);
setTimeout(_ => {
app.listen(8080).on('error', e => {
app.listen(config.ports.http).on('error', e => {
log.error(e);
});
}, 5000);
}, config.ports.http);
});

View File

@ -113,7 +113,7 @@ app.get('/', (req, res) => {
})
});
app.listen(config.ports.http);
app.listen(config.ports.service);