Change listen addr

This commit is contained in:
Bryan Ashby 2018-12-14 23:03:10 -07:00
parent d9467f6469
commit 874aee5baa
1 changed files with 1 additions and 1 deletions

View File

@ -764,6 +764,6 @@ exports.getModule = class NNTPServerModule extends ServerModule {
}
listenURI(port, service = 'nntp') {
return `${service}://localhost:${port}`;
return `${service}://0.0.0.0:${port}`;
}
};