为azure容器创建azure cdn端点

时间:2017-04-18 10:51:39

标签: azure azure-storage-blobs azure-cdn azure-container-service

我需要为Azure容器创建Azure CDN端点。我使用下面的代码来做到这一点。

 Endpoint endpoint = new Endpoint() {
                IsHttpAllowed = true,
                IsHttpsAllowed = true,
                Location = this.config.ResourceLocation,
                Origins = new List<DeepCreatedOrigin> { new DeepCreatedOrigin(containerName, string.Format(STORAGE_URL, storageAccountName)) },
                OriginPath = "/" + containerName,                    
            };
            await this.cdnManagementClient.Endpoints.CreateAsync(this.config.ResourceGroupName, storageAccountName, containerName, endpoint);

我提供的所有信息都是正确的,并且Endpoint已成功创建。但是当我尝试访问其中的任何blob时。它给出了InvalidUrl错误。

然而奇怪的是,如果我通过门户使用相同的值创建相同的端点,我可以访问和下载blob。

任何人都可以让我知道我的代码中我做错了什么?我需要传递任何额外的参数吗?

1 个答案:

答案 0 :(得分:1)

据我所知,如果您想在代码中创建存储CDN,则需要将OriginHostHeader值设置为存储帐户URL。

更多细节,您可以参考以下代码:

   // Create CDN client
            CdnManagementClient cdn = new CdnManagementClient(new TokenCredentials(token))
            { SubscriptionId = subscriptionId };
            //ListProfilesAndEndpoints(cdn);
            Endpoint e1 = new Endpoint()
            {
               // OptimizationType = "storage",
                Origins = new List<DeepCreatedOrigin>() { new DeepCreatedOrigin("{yourstoragename}-blob-core-windows-net", "{yourstoragename}.blob.core.windows.net") },
                OriginHostHeader = "{yourstoragename}.blob.core.windows.net",
                IsHttpAllowed = true,
                IsHttpsAllowed = true,
                OriginPath=@"/foo2",
                Location = "EastAsia"
        };

        cdn.Endpoints.Create(resourcegroup, profilename, enpointname, e1);

此外,我建议您生成SAS令牌,以便通过网址直接访问blob文件。