Installing an SSL Certificate in Apache (CentOS)
After your certificate request is approved, you can download your SSL and intermediate certificate from within the SSL application. For more information see Downloading Your SSL Certificate. Both of these files must be installed on your Web server.
These instructions do not apply to Ubuntu servers running Apache.
Puoi anche caricare il bundle di certificati intermedi dall' archivio.
Per installare i certificati SSL e intermedi
- Copia il file del certificato SSL e il file del bundle di certificati nel tuo server Apache. Dovresti già avere un file della chiave nel server da quando hai generato la tua richiesta di certificato.
- Locate the following directives in either your
httpd.conf
orssl.conf
file (which files you use depends on how you configured Apache). If one or more of them are currently commented out, uncomment them by removing the#
character from the beginning of the line. Set the values of these directives to the absolute path and filename of the appropriate file, based on your version of Apache:Apache Version < 2.4.8 Directive Path to Enter SSLCertificateFile Certificate file path SSLCertificateKeyFile Key file path SSLCertificateChainFile Intermediate bundle path Apache Version 2.4.8+ Directive Path to Enter SSLCertificateFile Certificate file path SSLCertificateKeyFile Key file path SSLCACertificatePath Intermediate bundle path - Salva il file di configurazione e riavvia Apache.
Per riavviare il tuo server Web
La procedura per riavviare Apache dipende largamente dalla piattaforma del suo sistema operativo. Sulle piattaforme simili a Unix (Linux, Solaris, HP-UX e così via), in genere si esegue uno script per interrompere e riavviare il daemon httpd. In Windows, in genere si arresta e riavvia il servizio Apache nella console amministrativa dei servizi. Consulta la documentazione del fornitore del tuo sistema operativo o la documentazione su Apache.
Il tuo certificato SSL è installato. Se hai problemi, consulta Where can I get information about my SSL's configruation? per informazioni su come diagnosticare i problemi.