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

10 Sept 2019, 11:41

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

10 Sept 2019, 13:40

@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}`)
10 Sept 2019, 14:49

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

10 Sept 2019, 15:35

@michaelbest1

caddy server
https://caddyserver.com

14 Sept 2019, 11:30

Succeded! Thanks very much!