0
0

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 3 years have passed since last update.

Front DoorでTLSの最低バージョンをver1.2にする方法

Posted at

参考:
https://medium.com/@bcasari/azure-front-door-how-to-set-min-tls-version-80b7662fdc76

FrontDoorNameを取得する。

以下のURLのRESTの「Try It」を選択し、各種パラメータを入力、実行
https://docs.microsoft.com/en-us/rest/api/frontdoorservice/frontdoor/frontend-endpoints/list-by-front-door

成功すれば202
応答のJSONに、nameでFrontDoorNameが入っている

TLSの最低バージョンをver1.2にする

以下のURLのRESTの「Try It」を選択し、各種パラメータを入力、Bodyに以下のJsonいれて実行
https://docs.microsoft.com/en-us/rest/api/frontdoorservice/frontdoor/frontend-endpoints/enable-https

{
  "certificateSource": "FrontDoor",
  "protocolType": "ServerNameIndication",
  "minimumTlsVersion": "1.2",
  "frontDoorCertificateSourceParameters" : {
       "certificateType": "Dedicated"
  }
}

成功すれば202

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?