10
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Azure】AzureポータルからLB(Application Gateway)にSSL証明書をアップロードしてみた

Last updated at Posted at 2018-03-05

#前提

  • SSL証明書&秘密鍵&中間証明書は取得済み
  • pfx証明書はCentOS7.4で作成
  • Azure Application Gatewayを作成済み

#手順概要
①SSL証明書と秘密鍵からpfx証明書を作成
 ⇒AzureのLBにはpfx証明書が必要です

②作成したpfx証明書をAzureポータルからアップロード
 ⇒リスナーの追加とルールの適用

#①SSL証明書&秘密鍵&中間証明書からpfx証明書を作成
1.サーバにSSL証明書&秘密鍵&中間証明書をアップロードする。

2.下記コマンドを実行しpfx証明書を作成します。

# openssl pkcs12 -export -inkey <秘密鍵> -in <証明書> -certfile <中間証明書> -out <出力する任意のpfx証明書名>

■実行例
# openssl pkcs12 -export -inkey Privatekey.key -in Certificate.crt -certfile CA-Certificate -out HWS_Certificate.pfx
Enter Export Password: ★任意のパスワードを入力しEnter
Verifying - Enter Export Password: ★任意のパスワードを入力しEnter
※ここで入力するパスワードは後々必要です。

#②作成したpfx証明書をAzureポータルからアップロード
1.Azure Portalにログインする。

2.[アプリケーションゲートウェイ]を押下し対象のロードバランサーを選択する。

01azure-ssl.png

3.[リスナー]を選択する。

02azure-ssl.png

4.追加するリスナーのタイプを選択する。※今回はマルチサイト

03azure-ssl.png

5.必要な情報を記入して[OK]を押下する。

04azure-ssl.png
パスワードは手順①の2.で使用したものを入力

6.追加するルールのタイプを選択する。※今回はBasic

05azure-ssl.png

7.必要な情報を記入して[OK]を押下する。

06azure-ssl.png

httpsでの接続確認を行い完了!

10
8
3

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
10
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?