umbraconightly - Umbraco.StorageProviders.AzureBlob 13.0.2--alpha.preview.5.geff204d

Azure Blob Storage provider for Umbraco CMS.

PM> Install-Package Umbraco.StorageProviders.AzureBlob -Version 13.0.2--alpha.preview.5.geff204d -Source https://www.myget.org/F/umbraconightly/api/v3/index.json

Copy to clipboard

> nuget.exe install Umbraco.StorageProviders.AzureBlob -Version 13.0.2--alpha.preview.5.geff204d -Source https://www.myget.org/F/umbraconightly/api/v3/index.json

Copy to clipboard

> dotnet add package Umbraco.StorageProviders.AzureBlob --version 13.0.2--alpha.preview.5.geff204d --source https://www.myget.org/F/umbraconightly/api/v3/index.json

Copy to clipboard
<PackageReference Include="Umbraco.StorageProviders.AzureBlob" Version="13.0.2--alpha.preview.5.geff204d" />
Copy to clipboard
source https://www.myget.org/F/umbraconightly/api/v3/index.json

nuget Umbraco.StorageProviders.AzureBlob  ~> 13.0.2--alpha.preview.5.geff204d
Copy to clipboard

> choco install Umbraco.StorageProviders.AzureBlob --version 13.0.2--alpha.preview.5.geff204d --source https://www.myget.org/F/umbraconightly/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "umbraconightly" -SourceLocation "https://www.myget.org/F/umbraconightly/api/v2"
Install-Module -Name "Umbraco.StorageProviders.AzureBlob" -RequiredVersion "13.0.2--alpha.preview.5.geff204d" -Repository "umbraconightly" -AllowPreRelease
Copy to clipboard

Browse the sources in this package using Visual Studio or WinDbg by configuring the following symbol server URL: https://www.myget.org/F/umbraconightly/api/v2/symbolpackage/


Umbraco storage providers

This repository contains Umbraco storage providers that can replace the default physical file storage.

Note Use the following documentation for previous Umbraco CMS versions:

Umbraco.StorageProviders

Contains shared storage providers infrastructure, like a CDN media URL provider.

Usage

This provider can be added in the Program.cs file:

builder.CreateUmbracoBuilder()
    .AddBackOffice()
    .AddWebsite()
    .AddDeliveryApi()
    .AddComposers()
+   .AddCdnMediaUrlProvider()
    .Build();

There are multiple ways to configure the CDN provider. It can be done in code (replacing the code added above):

.AddCdnMediaUrlProvider(options => {
    options.Url = new Uri("https://cdn.example.com/");
    options.RemoveMediaFromPath = true;
});

In appsettings.json:

{
  "Umbraco": {
    "Storage": {
      "Cdn": {
        "Url": "https://cdn.example.com/",
        "RemoveMediaFromPath": true
      }
    }
  }
}

Or by environment variables:

UMBRACO__STORAGE__CDN__URL=https://cdn.example.com/
UMBRACO__STORAGE__CDN__REMOVEMEDIAFROMPATH=true

Note You still have to add the provider in the Program.cs file when not configuring the options in code.

Configuration

Configure your CDN origin to point to your site and ensure every unique URL is cached (includes the query string), so images can be processed by the site and the response cached by the CDN.

By default, the CDN provider removes the media path (/media) from the generated media URL, so you need to configure your CDN origin to include this path. This is to prevent caching/proxying other parts of your site, but you can opt-out of this behavior by setting RemoveMediaFromPath to false.

Umbraco.StorageProviders.AzureBlob

The Azure Blob Storage provider has an implementation of the Umbraco IFileSystem that connects to an Azure Blob Storage container.

Usage

This provider can be added in the Program.cs file:

builder.CreateUmbracoBuilder()
    .AddBackOffice()
    .AddWebsite()
    .AddDeliveryApi()
    .AddComposers()
+   .AddAzureBlobMediaFileSystem()
    .Build();

There are multiple ways to configure the provider. It can be done in code (replacing the code added above):

.AddAzureBlobMediaFileSystem(options => {
    options.ConnectionString = "UseDevelopmentStorage=true";
    options.ContainerName = "sample-container";
})

In appsettings.json:

{
  "Umbraco": {
    "Storage": {
      "AzureBlob": {
        "Media": {
          "ConnectionString": "UseDevelopmentStorage=true",
          "ContainerName": "sample-container"
        }
      }
    }
  }
}

Or by environment variables:

UMBRACO__STORAGE__AZUREBLOB__MEDIA__CONNECTIONSTRING=UseDevelopmentStorage=true
UMBRACO__STORAGE__AZUREBLOB__MEDIA__CONTAINERNAME=sample-container

Note You still have to add the provider in the Program.cs file when not configuring the options in code.

Umbraco.StorageProviders.AzureBlob.ImageSharp

Adds ImageSharp support for storing the image cache to a pre-configured Azure Blob Storage provider.

Usage

This provider can be added in the Program.cs file:

builder.CreateUmbracoBuilder()
    .AddBackOffice()
    .AddWebsite()
    .AddDeliveryApi()
    .AddComposers()
    .AddAzureBlobMediaFileSystem()
+   .AddAzureBlobImageSharpCache()
    .Build();

By default the media file system configuration will be used and files will be stored in a separate folder (see below). You can specify the name of another (already configured) Azure Blob file system to store the files in another container:

.AddAzureBlobFileSystem("Cache")
.AddAzureBlobImageSharpCache("Cache")

Folder structure in the Azure Blob Storage container

The container name is expected to exist and uses the following folder structure:

  • /media - contains the Umbraco media, stored in the structure defined by the IMediaPathScheme registered in Umbraco (the default UniqueMediaPathScheme stores files with their original filename in 8 character directories, based on the content and property GUID identifier)
  • /cache - contains the ImageSharp image cache, stored as files with a filename defined by the ICacheHash registered in ImageSharp (the default CacheHash generates SHA256 hashes of the file contents and uses the first characters configured by the Umbraco:CMS:Imaging:CacheHashLength setting)

Note This is different than the behavior of other file system providers, i.e. UmbracoFileSystemProviders.Azure that expect the media contents to be at the root level.

Using the file system providers

Please refer to our documentation on using custom file systems.

Bugs, issues and Pull Requests

If you encounter a bug when using this client library you are welcome to open an issue in the issue tracker of this repository. We always welcome Pull Request and please feel free to open an issue before submitting a Pull Request to discuss what you want to submit.

Questions about usage should be posted to the forum on our.umbraco.com.

License

Umbraco Storage Providers is MIT licensed.

  • .NETFramework 8.0
    • Azure.Storage.Blobs (>= 12.19.1)
    • Umbraco.Cms.Web.Common (>= 13.0.0 && < 14.0.0)
    • Umbraco.StorageProviders (>= 13.0.2--alpha.preview.5.geff204d && < 14.0.0)
  • .NETFramework 8.0: 8.0.0.0

Owners

umbraco

Authors

Umbraco

Project URL

https://github.com/umbraco/Umbraco.StorageProviders

License

MIT

Tags

umbraco-marketplace umbraco azure blob storage

Info

2 total downloads
1 downloads for version 13.0.2--alpha.preview.5.geff204d
Download (20 KB)
Download symbols (19.63 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
14.0.1--alpha.preview.10.g094e22d 19.41 KB Wed, 03 Jul 2024 01:03:40 GMT 0
13.0.2--alpha.preview.5.geff204d 20 KB Fri, 08 Mar 2024 10:18:41 GMT 1
12.1.0--alpha.preview.5.g39de1c4 18.34 KB Fri, 30 Jun 2023 01:04:58 GMT 0
12.0.0 18.25 KB Thu, 29 Jun 2023 01:01:36 GMT 0
11.1.0--alpha.preview.4.g5e650f5 17.23 KB Tue, 25 Oct 2022 01:06:04 GMT 0
11.0.0 18.26 KB Thu, 01 Dec 2022 02:06:28 GMT 0
10.1.0-alpha 19.7 KB Fri, 14 Oct 2022 01:07:44 GMT 0
10.0.0 19.97 KB Wed, 24 Aug 2022 01:06:46 GMT 1
2.0.0-rc1 19.93 KB Tue, 24 May 2022 01:07:20 GMT 0
1.1.1 25.6 KB Thu, 09 Jun 2022 01:07:20 GMT 0