0
0
Fork 0

Change default interface of web and streaming from 0.0.0.0 to 127.0.0.1 (#11302)

This commit is contained in:
Eugen Rochko 2019-07-15 05:56:35 +02:00 committed by GitHub
parent 2f813b7ea1
commit e7353c47db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -672,7 +672,7 @@ const attachServerWithConfig = (server, onSuccess) => {
}
});
} else {
server.listen(+process.env.PORT || 4000, process.env.BIND || '0.0.0.0', () => {
server.listen(+process.env.PORT || 4000, process.env.BIND || '127.0.0.1', () => {
if (onSuccess) {
onSuccess(`${server.address().address}:${server.address().port}`);
}