im looking for a proxy which supports a massive load (like nginx or haproxy) and can handle websockets and ssl. i know only nginx which does not support websockets and haproxy which doesnt support ssl offloading.

thanks

link|improve this question
1  
What's your budget? – Tom O'Connor Oct 30 '10 at 19:17
its nearly non-existent at the moment – michu Nov 4 '10 at 19:07
feedback

2 Answers

I have seen a number of tutorials using stunnel to decrypt the SSL traffic then pass the unencrypted traffic on to haproxy, and finally the web server. I am not aware of its performance limitations however.

link|improve this answer
feedback

I have been putting Apache httpd in front of haproxy to handle the SSL traffic. Apache runs on port 443 and handles the SSL traffic on the front end and then uses the proxy module to forward the traffic to a haproxy instance that is listening to a high port number on 127.0.0.1. haproxy then forwards the traffic to the backend servers.

link|improve this answer
thanks. i think apache is not able to handle such a high load. i'm required to handle really many connections. – michu Nov 4 '10 at 19:05
1  
How about putting pound in front of it? – 3molo Dec 29 '10 at 7:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.