NODE JS SSL CERTIFICATE HTTPS SERVER
************* ๐๐ ณ๐ ด๐ ผ๐ ๐ ฒ๐ พ๐๐๐๐ ด๐ *************
๐๐ฟ๐ฒ๐ฎ๐๐ฒ ๐๐๐ต๐ฒ๐ฟ๐ถ๐๐บ ๐๐น๐ผ๐ฐ๐ธ๐ฐ๐ต๐ฎ๐ถ๐ป ๐ฆ๐บ๐ฎ๐ฟ๐ ๐๐ผ๐ป๐๐ฟ๐ฎ๐ฐ๐ ๐จ๐๐ถ๐ป๐ด ๐ฆ๐ผ๐น๐ถ๐ฑ๐ถ๐๐ ๐-๐ญ
https://www.udemy.com/course/smart-contract/?referralCode=745670DA043269ED16F4
๐๐จ๐๐ค๐๐ญ ๐๐ ๐ฐ๐ข๐ญ๐ก ๐๐จ๐๐๐๐ฌ ๐๐จ๐ฆ๐ฉ๐ฅ๐๐ญ๐ ๐๐ซ๐จ๐ ๐ซ๐๐ฆ๐ฆ๐ข๐ง๐ ๐๐ฎ๐ข๐๐
https://www.udemy.com/course/complete-socket-io-programming-guidevideo-conferencing-app/?referralCode=3BEC5E0705A9DB6411A4
๐จ๐ฑ๐ฒ๐บ๐ ๐-๐ญ ๐ก๐ผ๐ฑ๐ฒ ๐ท๐ ๐๐ผ๐๐ฟ๐๐ฒ
https://www.udemy.com/course/advance-node/?referralCode=5A9B44DB
๐๐ผ๐บ๐ฝ๐น๐ฒ๐๐ฒ ๐๐น๐ฒ๐ฐ๐๐ฟ๐ผ๐ป ๐ท๐ ๐๐ฝ๐ฝ๐น๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป ๐๐ฒ๐๐ฒ๐น๐ผ๐ฝ๐บ๐ฒ๐ป๐ ๐๐ผ๐๐ฟ๐๐ฒ ๐ณ๐ผ๐ฟ ๐ช๐๐ก,๐ ๐๐,๐๐๐ก๐จ๐ซ
https://www.udemy.com/course/electronjs/?referralCode=D562EC3E74E778AC3C7D
๐๐ผ๐บ๐ฝ๐น๐ฒ๐๐ฒ ๐ฅ๐ฒ๐ฎ๐ฐ๐ ๐๐ฆ ๐๐๐ถ๐ฑ๐ฒ ๐ช๐ถ๐๐ต ๐ฃ๐ฟ๐ผ๐ท๐ฒ๐ฐ๐ (๐ช๐ฒ๐ฏ๐ฝ๐ฎ๐ฐ๐ธ, ๐ต๐ผ๐ผ๐ธ๐,๐ฅ๐ฒ๐ฑ๐๐
)
https://www.udemy.com/course/reactguide/?referralCode=93CC590EB047525D1279
****************************************
How to create an https server?
To create an HTTPS server, you need two things: an SSL certificate, and built-in https Node.js module.
We need to start out with a word about SSL certificates. Speaking generally, there are two kinds of certificates: those signed by a โCertificate Authorityโ, or CA, and โself-signed certificatesโ. A Certificate Authority is a trusted source for an SSL certificate, and using a certificate from a CA allows your users to be trust the identity of your website. In most cases, you would want to use a CA-signed certificate in a production environment โ for testing purposes, however, a self-signed certificate will do just fine.
GENERATE SSL
openssl genrsa -out key.pem
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem
rm csr.pem
REFERENCE DOCUMENT
https://nodejs.org/en/knowledge/HTTP/servers/how-to-create-a-HTTPS-server/
by i learned today
linux http server
thanks man
good
thats not a SSL working, still getting no secure connection.
Do you know how to trully make the NODE JS server serve over https securelly?
Worked on MAC too! Thank you so so much !
Bonne vidรฉo mais la musique est trop casse couille
very good !
WoW its really helpful
'openssl' is not recognized as an internal or external command,
How to secure it