SSL on Apache HTTP Server

前端 未结 3 1153
眼角桃花
眼角桃花 2021-01-29 00:35

I have 2 crt files for Apache server:

  • 1_root_bundle.crt
  • 2_my_domain_name.com.crt

And other bundle:

  • 1_Intermediate.crt
  • <
3条回答
  •  天涯浪人
    2021-01-29 00:52

    You can use the bundle file with SSLCertificateChainFile.

    SSLCertificateFile /home/ubuntu/tad.com/tad.com.crt
    SSLCertificateKeyFile /home/ubuntu/tad.com/tad.com.key
    SSLCertificateChainFile /home/ubuntu/tad.com/intermediate_bundle.crt
    SSLCACertificateFile /home/ubuntu/zup.today/intermediate_bundle.crt
    

    OR

    If you are using bundle so it will work without SSLCertificateChainFile file.

    SSLCertificateFile /home/ubuntu/tad.com/tad.com.crt
    SSLCertificateKeyFile /home/ubuntu/tad.com/tad.com.key
    SSLCACertificateFile /home/ubuntu/zup.today/intermediate_bundle.crt
    

提交回复
热议问题