[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [cobalt-users] Godaddy (Starfield) SSL Certificate



> -----Original Message-----
> From: cobalt-users-admin@xxxxxxxxxxxxxxx
> [mailto:cobalt-users-admin@xxxxxxxxxxxxxxx]On Behalf Of
> jwmiller@xxxxxxxxxxx
> Sent: 06 April 2004 20:12
> To: cobalt-users@xxxxxxxxxxxxxxx
> Subject: [cobalt-users] Godaddy (Starfield) SSL Certificate
> 
> 
> I purchased a SSL certificate through Godaddy and found that I need to
> install an intermediate certificate. Could anyone tell me where 
> this goes and
> how to make the modification to the httpd.conf file so that it 
> functions? There
> are two such conf files on my Raq4. One in 
> /etc/admserv/conf/httpd.conf and one
> in /etc/httpd/conf/httpd.conf.
> 
> John
> Miller
> Flexible Plastics, Inc.


John

# global ssl setup
<IfModule mod_ssl.c>
SSLSessionCache         dbm:/var/log/httpd/ssl_scache
SSLSessionCacheTimeout  300
SSLMutex                file:/var/log/httpd/ssl_mutex
SSLRandomSeed startup   file:/dev/urandom 512
SSLRandomSeed connect   builtin
# Location of a secondary signing authority certificate. Uncomment and edit
# the location if necessary if you install a secondary certificate.
SSLCACertificateFile /etc/httpd/conf/ca.txt
</IfModule>

The above is an extract from /etc/httpd/conf/httpd.conf
This one uses an InstantSSL cert using ca.txt for the secondary cert.

Put the secondary cert in /etc/httpd/conf/xxxx.xxx
and set this as the secondary cert path.

You will need to restart the webserver once done.
/etc/rc.d/init.d/httpd restart

Hope this helps

Paul.