I\'m attempting to connect to a websockets server (websockify) through a reverse proxy on IIS. The IIS and websockets server reside on the same physical server (Windows Serv
The TLDR is to:
perMessageDeflate. disable compression as APR 3 In IIS Proxy does not support itconst io = require("socket.io")(server, {
transports: ["websocket", "polling"],
perMessageDeflate: false
});