This commit is contained in:
Marcel Pociot
2020-04-27 11:07:19 +02:00
parent 054e5b6a86
commit 0913e72f4f
3 changed files with 3 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ class ProxyManager
{
$protocol = $this->configuration->port() === 443 ? "wss" : "ws";
connect($protocol."://{$this->configuration->host()}:{$this->configuration->port()}/__expose_control__", [], [
connect($protocol."://{$this->configuration->host()}:{$this->configuration->port()}/expose/control", [], [
'X-Expose-Control' => 'enabled',
], $this->loop)
->then(function (WebSocket $proxyConnection) use ($clientId, $connectionData) {