Difference between SSLCertificateFile and SSLCertificateChainFile?
Posted
by
chrisjlee
on Server Fault
See other posts from Server Fault
or by chrisjlee
Published on 2012-04-24T15:43:37Z
Indexed on
2012/09/29
21:39 UTC
Read the original article
Hit count: 222
Normally with a virtual host an ssl is setup with the following directives:
Listen 443
SSLCertificateFile /home/web/certs/domain1.public.crt
SSLCertificateKeyFile /home/web/certs/domain1.private.key
SSLCertificateChainFile /home/web/certs/domain1.intermediate.crt
From: For enabling SSL for a single domain on a server with muliple vhosts, will this configuration work?
What is the difference between SSLCertificateFile
and SSLCertificateChainFile
? The client has purchased a CA key from GoDaddy. It looks like GoDaddy only provides a SSLCertificateFile
(.crt file), and a SSLCertificateKeyFile (.key file) and not at SSLCertificateChainFile
.
Will my ssl still work without a SSLCertificateChainFile
path specified ?
Also, is there a canonical path where these files should be placed?
© Server Fault or respective owner