Master James
Master James
Mine https://github.com/mrdoob/stats.js/pull/53 points https://github.com/mrdoob/stats.js/pull/33 I've wondered if this part could use a little more attention? In the end it's a higher level problem that has many solutions so I think...
So maybe this idea is working for me? ``` request: function ( req ) { req.socket.ip = req.origin; ``` later he wrote... ``` connect: function ( conn ) { console.log(conn.socket.ip);...
No I've looked at this over and over a few times and it's an issue let me clarify. It seems if you launch a process for hosting on another secondary...
I've noted since that by passing the 3rd argument with an object of headers, that X-Real-IP is a better approach, then messing with the origin (prior argument). `{"x-real-ip": ws.ip }`...
Not sure if it makes any difference but I recall adding a way that it splits out for each CPU a nodejs instance that gets its own IP and IPV6...
Found the docs... https://github.com/theturtle32/WebSocket-Node/blob/master/docs/WebSocketClient.md Looking more like a req issue though? https://github.com/theturtle32/WebSocket-Node/blob/master/docs/WebSocketRequest.md Server Config Options? https://github.com/theturtle32/WebSocket-Node/blob/master/docs/WebSocketServer.md#server-config-options Is this them? I'm not finding any clear reference to be able to add...
Maybe if you could point me to a nodejs server to nodejs client with ssl/tls/wss enabled example that would show the way, thanks.
Found the way. It is the tlsOptions in server.conf = {...} ``` options: { tlsOptions: { ca: wup.lib.fs.readFileSync( 'ca-crt.pem' ), checkServerIdentity: function ( host, cert ) { if ( host...
I'm still having serious problems with this **"self signed certificate in certificate chain"** error when connecting _wss_ secure websocket connections.
Using this ref http://serverfault.com/questions/589590/understanding-the-output-of-openssl-s-client I was able to figure that in fact the CA was not loading. Further investigation showed the data was set but when connected to the next...