Quantcast
Channel: Nginx Forum - How to...
Viewing all articles
Browse latest Browse all 4759

Re: Trouble setting up SSL in nginx

$
0
0
Solved. Below is the SSL server code...

server {
listen 91 ssl;
server_name mydomain.com;

ssl_certificate "C:/certs/mydomain.com.pm";
ssl_certificate_key "C:/certs/mydomain.com-key.pm";

ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;

ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;

location / {
root /home/www/public_html/mydomain.com/public/;
index index.html index.htm;
}
}

Viewing all articles
Browse latest Browse all 4759

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>