avoid SSL certificate checks using AJAX/jquery -


is there option in ajax/jquery request avoid strict ssl?

like

--no-check-certicate in curl

strictssl : false in (npm) request

have tried using option -k, --insecure in command, says sets insecure connection, shouldn't doing that...

-k, --insecure

(tls) default, every ssl connection curl makes verified secure. option allows curl proceed , operate server connections otherwise considered insecure.

the server connection verified making sure server's certificate contains right name , verifies using cert store.

see online resource further details: https://curl.haxx.se/docs/sslcerts.html

see --proxy-insecure , --cacert. https://curl.haxx.se/docs/manpage.html


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -