How to create CDN endpoint using Azure CLI

First connect to your Azure instance

az login

Then run the following command

az cdn endpoint create --resource-group *resourceGroupName* --profile-name *cdnProfileName* --name *endpointName* --origin *originDomain*

Once the process completes, you will see a new endpoint in your cdn profile.

Cheers

Comments

Popular posts from this blog

Configuring Any .NET 9.0 Program to Run in Docker: A Step-by-Step Guide

Understand .NET 9.0 Blazor Hosting Models

Understanding a Multi-Stage Dockerfile for .NET 9 Application