mirror of
https://github.com/open5gs/open5gs.git
synced 2026-04-28 03:19:31 +00:00
make webui listen on 0.0.0.0 (#587)
This commit is contained in:
parent
5a7e5150a5
commit
e2d682d142
1 changed files with 2 additions and 2 deletions
|
|
@ -101,9 +101,9 @@ co(function* () {
|
|||
server.use(morgan('tiny'));
|
||||
}
|
||||
|
||||
server.listen(3000, err => {
|
||||
server.listen(3000, "0.0.0.0", err => {
|
||||
if (err) throw err;
|
||||
console.log('> Ready on http://localhost:3000');
|
||||
console.log('> Ready on http://0.0.0.0:3000');
|
||||
});
|
||||
})
|
||||
.catch(error => console.error(error.stack));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue