This commit is contained in:
Marcel Pociot
2020-09-07 22:02:49 +02:00
parent 1d7555f58c
commit fb45d40684

View File

@@ -88,7 +88,7 @@ class ConnectionManager implements ConnectionManagerContract
do {
try {
$portFound = true;
$server = new Server('127.0.0.1:'.$port, $this->loop);
$server = new Server('0.0.0.0:'.$port, $this->loop);
} catch (\RuntimeException $exception) {
$portFound = false;
$port++;