2

xampp for macをダウンロードしてインストールし、ssl certificatを購入しましたが、大変です

SSLをインストールする回数...

  • 誰かがコンピュータの賢明な方法でそれを設定する簡単な方法を段階的に私に説明できますか?持ってください

グーグルを検索しましたが、彼らのやり方が理解できませんでした。

説明...

4

1 に答える 1

5

The file you need to edit to enable SSL is httpd-ssl.conf found in the conf/extra directory.

Change the following directives:

  • SSLCertificateFile to domain_com.crt
  • SSLCACertificateFile to PositiveSSLCA2.crt
  • SSLCertificateKeyFile to the private key file you received when you created the CSR

    • Open " Terminal " and type: sudo nano /private/etc/hosts then add 127.0.0.1 your_domain.com and 127.0.0.1 www.your_domain.com, when done editing the hosts file, press control-o to save the file.

Then call sudo /Applications/XAMPP/xamppfiles/xampp enablessl to enable SSL in httpd.conf and restart Apache. Now try accessing https://localhost

于 2012-07-07T21:40:51.053 に答える