mirror of
https://github.com/seejohnrun/haste-server
synced 2025-08-22 14:13:43 -07:00
listen on all
This commit is contained in:
parent
7edb3082e4
commit
f277c1dd33
1 changed files with 1 additions and 1 deletions
|
@ -198,6 +198,6 @@ app.use(connect_st({
|
||||||
index: 'index.html'
|
index: 'index.html'
|
||||||
}));
|
}));
|
||||||
|
|
||||||
http.createServer(app).listen(config.port, config.host);
|
http.createServer(app).listen(config.port, '0.0.0.0');
|
||||||
|
|
||||||
winston.info('listening on ' + config.host + ':' + config.port);
|
winston.info('listening on ' + config.host + ':' + config.port);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue