O que eu faço com meus certificados SSL depois de comprá-los?

0

OK, eu tenho um servidor Apache em execução em XAMPP , e eu gerou meu CSR e alguns certificados falsos. Fui ao site da Thawte e recebi um teste SSL e eles me enviaram um e-mail com todos esses outros códigos de certificado, mas o que eu faço com eles (o e-mail está abaixo)?

This certificate is valid for 21 days, and will give you an
opportunity to experience the installation process as well as
determine your required server configuration.

----------------------------------------------------------------

Your Thawte trial SSL certificate:
(Certificate data)


----------------------------------------------------------------

Important installation instructions

For the trial SSL certificate to provide the same user
experience as a trusted certificate, the Thawte Trial Secure
Server Intermediate CA and the Thawte Test CA Root certificate
must also be installed:


Thawte Trial Secure Server Intermediate CA:
(Certificate data)


Thawte Test CA Root certificate:
(Certificate data)


----------------------------------------------------------------

Installing your certificate

Installation instructions for a range of web server solutions
are available on our support site here:
https://search.thawte.com/support/ssl-digital-certificates/index?page=content&id=SO7137

Remember, install your trial certificate on test or development
servers only. The trial SSL certificate is intended for testing
purposes only.

----------------------------------------------------------------

Your Thawte advisor will be in touch during the next
few days but if you need any immediate assistance please
feel free to contact us by calling, sending an e-mail or
making use of our live chat facility below.

Thank you for your interest in thawte!

The Thawte Team

    
por Moussa Harajli 15.03.2013 / 16:44

1 resposta

-1
  1. Copie e cole sua Chave pública em um arquivo de texto em seu computador. Algo como C:\XAMPP\SSL\Public.pem . O bloco de notas funciona bem.
  2. Faça o download do pacote / cadeia de certificados da Thwarte: link
    Salve-o no mesmo diretório que # 1
  3. Mova sua chave privada, a que você usou para gerar o CSR, para a mesma pasta como nº 1. Chame de Private.pem ou algo lógico.

Agora você tem suas chaves ... Em seguida, configure o Apache.

No seu arquivo httpd.conf:

SSLCertificateFile C:\XAMPP\SSL\Public.pem
SSLCertificateKeyFile C:\XAMPP\SSL\Private.pem
SSLCertificateChainFile C:\XAMPP\SSL\SSL123_CA_Bundle.pem

Nomes e locais de arquivos estão sujeitos a alterações, dependendo do que você fez nas etapas acima.

    
por 15.03.2013 / 16:53