Questions tagged [websocket]
WebSocket is an API built on top of TCP sockets and a protocol for bi-directional, full-duplex communication between client and server without the overhead of http.
5
questions
45
votes
6
answers
83k
views
Configuring Apache2 to proxy WebSocket?
The WebSocket protocol is an extension of the HTTP protocol. However, the proxy module of Apache2 does not seem to know about it, and throws away crucial headers, converting the call to a standard ...
9
votes
3
answers
17k
views
Apache mod_proxy: forward secure websocket to non-secure
The websocket library I rely on (PHP-Websockets) does not yet support secure sockets (wss). My website is served over https though, so I cannot use insecure ws connections.
I'm trying to use Apache's ...
1
vote
0
answers
595
views
Amazon AWS WebSocket Load Balancing Scale-In
We are in the process of developing a WebSocket application that will run on the same application servers that serve our APIs, which are all within a target group of a new Amazon Application Load ...
1
vote
1
answer
3k
views
Can Nginx limit incoming websocket message size?
In the JS WebSocket library, you can limit the maximum allowed incoming message size via the maxPayload option.
I'd like to impose this limit in my Nginx reverse proxy layer, before it gets to my ...
0
votes
1
answer
1k
views
How to run a Parse Live Query Server (Web Sockets) behind an AWS Load Balancer?
ParseLiveQuery depends on Websockets. More generically this question could be about getting web sockets to work behind an AWS ELB.
I'm using the new Parse Server configured in AWS using Elastic ...