Yes, it has support for SSL/TLS. It turns out that the process calling my script was setting LD_LIBRARY_PATH to its own version of libssl and that was screwing up my nodejs script. I already solved my issue. Thanks @johnconnolly for pointing it out and @mscdex for helping me too :).
On Tue, Mar 20, 2012 at 12:41 PM, mscdex <[email protected]> wrote: > On Mar 20, 10:39 am, Camilo Aguilar <[email protected]> wrote: > > root@int:~# node -e "console.log(process.versions, process.features)" > > { node: '0.6.13', > > v8: '3.6.6.24', > > ares: '1.7.5-DEV', > > uv: '0.6', > > openssl: '0.9.8k' } { debug: false, > > uv: true, > > ipv6: true, > > tls_npn: false, > > tls_sni: true, > > tls: true } > > Looks like you have SSL/TLS support then. >
