We’re trying to use typesense-js client to connect...
# community-help
r
We’re trying to use typesense-js client to connect to a typesense cluster over https. The ssl on the cluster is self signed, and we are ok with that for now. The library complains about that:
Copy code
error: self signed certificate 
code: DEPTH_ZERO_SELF_SIGNED_CERT
Is it possible to disable the verification of the ssl cert so that self signed certs are also allowed ? Asking only about the JS client
k
JS browser or node client?
r
node js client
@Kishore Nallan?
k
I don't think there is a way to do that, but why not just use http?
If it's on an internal network, that should be fine.
r
trying now, thanks!