I changed my web server from HTTP to HTTPS using "Let's s Encrypt" . The web server contains an API, and I have a Python application that uses the API.
On Linux, everything is fine, but on Windows I get this below when I log in.
[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)
I thought the SSL certificate was not installed.
So, I downloaded "isrgrootx1.der" and "let-encrypt-x1-cross-signed.der" renamed both to the end of "* .cer".
Then I opened the Windows console and ran this:
certutil -addstore "Root" "isrgrootx1.cer". certutil -addstore "Root" "lets-encrypt-x1-cross-signed.cer".
The second command did not complete because it is not a root certificate. My question is: in which group is let-encrypt-x1-cross-signed.cer installed?
python windows ssl-certificate lets-encrypt certutil
clausismus
source share