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?

Azure Static Web Apps を Azure Front Door 専用にアクセス制限を構成する

Last updated at Posted at 2024-07-12

Azure Static Web Apps を Azure Front Door 専用にアクセス制限を構成する

動機

Azure Static Web Appsをプライベート エンドポイントで非公開にして、Azure Front Doorからプライベート リンクさせるのが、アレなんだろうけどAzure Front DoorのPremium高いよ・・・って事で、お安く済ませること出来ないの?

あるよ・・・「Azure Front Door を Azure Static Web Apps 用に構成する」

有るんかい!

staticwebapp.config.json
{
    "$schema": "https://json.schemastore.org/staticwebapp.config.json",
    "forwardingGateway": {
        "requiredHeaders": {
            "X-Azure-FDID": "フロントドアID"
        }
    },
    "networking": {
        "allowedIpRanges": [
            "AzureFrontDoor.Backend"
        ]
    }
}

Azure Pieplineで動的にする

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?