Ошибочная установка идет папа SSL на Ubuntu Apache2

CloudSites является общей платформой хостинга, в то время как CloudServer является продуктом VPS.

До того, какие $150/месяцев на платформе CloudSites получают Вас, это легко доступно на их странице оценки.

2
задан 24 August 2012 в 05:38
1 ответ

You're haven't installed your private key. This...

SSLCertificateKeyFile PATH_TO_SSL/MY_SITE_NAME.csr

...is pointing at your Certificiate Signing Request (CSR), which is basically a "pre-certificate" that has been signed with your private key. You send this to the SSL provider and they sign it with their private key, and now you have a certificate.

You generated your private key when you ran this command:

openssl req -new -newkey rsa:2048 -nodes \
  -keyout yourdomain.key -out yourdomain.csr

The -keyout option indicates that your key is in a file called yourdomain.key. This is what needs to be supplied to the SSLCertificateKeyFile option in your Apache configuration.

3
ответ дан 3 December 2019 в 10:54

Теги

Похожие вопросы