ssl port didnt work on nginx
- by Jin Lin
I set up the unicorn and nginx on one of my ec2 machine.
and my request are loading ok with nginx listen to port 80.
but when I enable it to ssl, which listen to port 443.
It doesn't work. and it can still work with port 80, https.
server {
listen 443 ssl;
# replace with your domain name
server_name domain.com;
# replace this with your…