I am setting up a server with nginx, mongrel cluster with ssl. I am not
able to get the ssl settings right. I have used that standard settings
mentioned in most of the blogs…
listen 443;
ssl on;
ssl_certificate /usr/local/nginx/conf/cert.pem;
ssl_certificate_key /usr/local/nginx/conf/cert.key;
keepalive_timeout 70;
IS there something which I am missing?
On Nov 16, 2007 8:02 AM, Aditya N. [email protected] wrote:
IS there something which I am missing?
Not with what you have above.
What does the error message say? Generally it is very easy to have
issues with cert.pem as it is extremely touchy.
~Wayne
i had the same problems until i
added in the protocols and ciphers
listen 443;
server_name localhost;
ssl on;
ssl_session_timeout 5m;
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
ssl_prefer_server_ciphers on;
client_max_body_size 50M;
ssl_certificate /usr/local/nginx/conf/certs/sa_greenling_com.crt;
ssl_certificate_key /usr/local/nginx/conf/certs/server.key;
“Wayne E. Seguin” [email protected] wrote: On Nov 16, 2007 8:02
AM, Aditya N.
wrote:
IS there something which I am missing?
Not with what you have above.
What does the error message say? Generally it is very easy to have
issues with cert.pem as it is extremely touchy.
~Wayne