Hi nginx team,
We have taken the comodo certificate for our web application with apache
web
server. Now we changed the web server from apache to Nginx. But we are
getting the problem in session with nginx + comodo certificate. But with
apache + comodo certificate its working fine , also without the comodo
certificate its working fine with niginx.
comodo provide domainname.crt ,domainname.ca-bundle
how to configure domain_com.ca-bundle file in nginx
Thanks and Regards,
R.Karthik
You just need to append the bundle certificate (chain) to your own .crt:
cat domainname.ca-bundle >> domainname.crt
and then
ssl_certificate /path/domainname.crt;
ssl_certificate_key /path/domainname.key;
…
rr
From: karthi r
Sent: Monday, June 14, 2010 3:41 PM
To: [email protected]
Subject: SSL Problem
Hi nginx team,
We have taken the comodo certificate for our web application with apache
web
server. Now we changed the web server from apache to Nginx. But we are
getting the problem in session with nginx + comodo certificate. But with
apache + comodo certificate its working fine , also without the comodo
certificate its working fine with niginx.
comodo provide domainname.crt ,domainname.ca-bundle
how to configure domain_com.ca-bundle file in nginx
Thanks and Regards,
R.Karthik
nginx mailing list
[email protected]
http://nginx.org/mailman/listinfo/nginx
On Mon, Jun 14, 2010 at 06:11:53PM +0530, karthi r wrote:
how to configure domain_com.ca-bundle file in nginx
Configuring HTTPS servers
–
Igor S.
http://sysoev.ru/en/