Change binding to 0.0.0.0

Quick fix to allow to work inside Docker instance and behind a NAT.
This commit is contained in:
jonthekiller 2020-08-02 10:43:39 +02:00 committed by GitHub
parent 9c256643fa
commit 792eea9df2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -293,7 +293,7 @@ class CommunicationManager implements CallbackListener, UsageInformationAble {
}); });
}); });
//TODO check if port is closed //TODO check if port is closed
$this->socket->listen($socketPort, $this->maniaControl->getServer()->ip); $this->socket->listen($socketPort, '0.0.0.0');
Logger::log("[CommunicationManager] Socket " . $this->maniaControl->getServer()->ip . ":" . $this->socket->getPort() . " Successfully created!"); Logger::log("[CommunicationManager] Socket " . $this->maniaControl->getServer()->ip . ":" . $this->socket->getPort() . " Successfully created!");
} catch (ConnectionException $e) { } catch (ConnectionException $e) {