When working through https, access to the server is blocked by the browser, does it work through http?

When working through https, access to the server is blocked by the browser, does it work through http?

@lavren1974

Solved!!!

caddyserver

ws.matchscore.ru {
  proxy / 127.0.0.1:8014 {
    transparent
    websocket
  }
}

client (ws to wss)

this.colyseus = new Colyseus.Client('wss://ws.matchscore.ru')

server (ws to wss)

gameServer.listen(port);
console.log(`Listening on wss://localhost:${port}`)

Hi. Do you use nginx and pm2 for deployment? If so, how could you pack your web app and start it?

Succeded! Thanks very much!