Fastidious
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
3 deletions
-
src/lib/Server.js
|
|
@ -14,7 +14,6 @@ const { |
|
|
|
PORT, |
|
|
|
RELEASE, |
|
|
|
PASSWORD, |
|
|
|
WEBHOST, |
|
|
|
} = require('../config'); |
|
|
|
|
|
|
|
module.exports = class Server { |
|
|
@ -131,8 +130,8 @@ module.exports = class Server { |
|
|
|
return WireGuard.updateClientAddress({ clientId, address }); |
|
|
|
})) |
|
|
|
|
|
|
|
.listen(PORT,WEBHOST, () => { |
|
|
|
debug(`Listening on http://${WEBHOST}:${PORT}`); |
|
|
|
.listen(PORT, () => { |
|
|
|
debug(`Listening on http://0.0.0.0:${PORT}`); |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|