User Tools

Site Tools


blog:configure_apache2_to_use_comodo_essential_ssl_certificate

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
blog:configure_apache2_to_use_comodo_essential_ssl_certificate [2011-06-04 18:59] brbblog:configure_apache2_to_use_comodo_essential_ssl_certificate [2011-06-06 07:55] brb
Line 1: Line 1:
 ====== Configure apache2 to use comodo essential ssl certificate ====== ====== Configure apache2 to use comodo essential ssl certificate ======
  
-https://support.comodo.com/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid=964+  * Generate key: ''openssl genrsa -out ssl_subdomain_com.key 2048'' 
 +  * Create CSR: ''openssl req -new -key ssl_subdomain_com.key -out ssl_subdomain_com.csr'' 
 +  * Check CSR: ''openssl req -noout -text -in ssl_subdomain_com.csr'' 
 +  * Get your certificate from comodo  
 +  * Chain certificate download from comodo https://support.comodo.com/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid=964 -> essential.cabundle 
 +  * Get CRT after registration -> ssl_subdomain_com.crt 
 +  * Append chain certificate to crt: ''cp ssl_subdomain_com.crt ssl_subdomain_com.bundle.crt'' ''cat essential.cabundle >> ssl_subdomain_com.bundle.crt'' 
 + 
 +Configure apache 2 w/gntls 
 +<code> 
 +    GnuTLSEnable on 
 +    GnuTLSPriorities NORMAL 
 +    GnuTLSCertificateFile /etc/ssl-cacert/apache/ssl_subdomain_com.bundle.crt 
 +    GnuTLSKeyFile         /etc/ssl-cacert/apache/ssl_subdomain_com.key 
 +</code> 
  
 {{tag>linux apache ssl comodo}} {{tag>linux apache ssl comodo}}
blog/configure_apache2_to_use_comodo_essential_ssl_certificate.txt · Last modified: 2011-06-06 07:57 by brb