Problem description

HTTPS証明書ファイルをWAFにアップロードすると、「HTTPS秘密鍵の形式は無効です」と表示されます。

発生源

証明書の秘密鍵は暗号化することができる。 WAF cannot identify the encrypted private key.

対応策

  1. 秘密鍵ファイルを表示します。 次の図の赤いボックスでマークされている内容が秘密鍵ファイルに含まれている場合、秘密鍵は暗号化されます。Private key encryption
  2. Run the following command and enter a password to decrypt the private key:
    openssl rsa -in [$keyName] -text
    #[$keyName] は秘密鍵ファイルの名前を示します。
    If the following result is returned, the private key is decrypted.秘密鍵の復号化
  3. Re-upload the decrypted private key file to WAF.