Hello again,
I used the scuresession.js file of nodejs toturious. And I created a Private Certificate Authority using this command:
openssl req -newkey rsa:2048 -nodes -keyout MyRootCaKey.pem -x509 -days 365 -out MyRootCaCert.pem
Then I created a certificate using blew command:
openssl genrsa -out client1.pem 2048
openssl req -new -key client1.pem -out MyClient1.csr
openssl x509 -req -in MyClient1.csr -CA MyRootCaCert.pem -CAkey MyRootCaKey.pem -CAcreateserial
Knowing that at that time, I created a total of 4 files :
Then I merged client1.pem and clientCert1.pem and uploaded it. And the port1443 is also not abnormal:
Next, I pointed to these files in scuresession.js file.
But when I connect to port1443, it still doesn’t work.
Is there any error in my operation?
Thank you very much.