如何将 apache ssl 证书从 cent os 转移到 debian

如何将 apache ssl 证书从 cent os 转移到 debian

我有一个运行 cent os 7 的 VPS,我需要将 SSL 证书从它转移到专用的运行 debian 的 VPS。SSL 是在 gandi.net 中制作的。

我在 debian 中遇到的问题是我必须使用以下命令配置 apache 2:

    SSLCertificateFile     

SSLCertificateKeyFile 

但是在我的 VPS cent os http 配置中我找不到这个指令,我只找到了这个:

cat  /etc/httpd/conf.d/ssl.conf

AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl    .crl

SSLPassPhraseDialog     builtin
SSLSessionCache         shmcb:/var/cache/mod_ssl/scache(512000)
SSLSessionCacheTimeout  300
SSLMutex                default
SSLRandomSeed           startup file:/dev/urandom  256
SSLRandomSeed           connect builtin
SSLCryptoDevice         builtin

而且我不知道我必须将 SSLCertificateFile 和 SSLCertificateKeyFile 文件放在 devian 专用的什么位置。

相关内容