[users@httpd] Announcing mod_websocket v0.1.2

2020-07-15 Thread Jacob Champion
I'm happy to announce version 0.1.2 of mod_websocket: https://github.com/jchampio/apache-websocket/releases/tag/0.1.2 mod_websocket is an Apache 2.x module that allows developers to write C- and C++-based WebSocket services. The intent is for mod_websocket plugin writers to develop their ser

Re: [users@httpd] TLS Client Hello not responded by mod_ssl

2020-07-15 Thread Thierry Moreau
Solved! The configuration line: SSLRandomSeed connect "file:/dev/urandom" was missing a (not-always-)optional byte count as in SSLRandomSeed connect "file:/dev/urandom" 512 and the mod_ssl software logic was attempting to read to end of file in function ssl_rand_seed(...). Thanks to Raine