you just need specific ssl_certificate and ssl_certificate_key in server block。
like this:
server {
# other param
ssl_certificate your_cert.pem;
ssl_certificate_key your_cert.key;
# other param
}
On 四, 2019-04-18 at 23:26 -0700, vikram wrote:
Hi Team,
I have configure the nginx as Load balance using two application server (node JS).
===================
|| Nginx Load balance ||
===================
========= ==========
|| NodeJS 1|| || NodeJS 2 ||
======== ==========
Question is.
Where do i need to implement the Certificate on this so i can redirect it to https.
.