LoginSignup
1
1

More than 3 years have passed since last update.

AzureのマネージドサービスにSSL証明書を設置するためにpfxファイルを作成する

Posted at

Azureの、例えばApplicationGatewayのようなサービスにSSL証明書を設置するには、pfx形式のファイルを作成しないといけません。

以下のコマンドで、pfxファイルを作ることができます。

$ openssl pkcs12 -export -inkey <秘密鍵ファイル名> -in <SSLサーバ証明書ファイル名> -out <任意のpfxファイル名>

参考
https://knowledge.digicert.com/ja/jp/solution/SO23603.html

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1