File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed
UmbracoFileSystemProviders.Azure.Installer/config/imageprocessor
UmbracoFileSystemProviders.Azure.Tests Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ In `Web.config` create the new application keys
50
50
``` xml
51
51
<add key =" AzureBlobFileSystem.ConnectionString:media" value =" DefaultEndpointsProtocol=https;AccountName=[myAccountName];AccountKey=[myAccountKey]" />
52
52
<add key =" AzureBlobFileSystem.ContainerName:media" value =" media" />
53
- <add key =" AzureBlobFileSystem.RootUrl:media" value =" http ://[myAccountName].blob.core.windows.net/" />
53
+ <add key =" AzureBlobFileSystem.RootUrl:media" value =" https ://[myAccountName].blob.core.windows.net/" />
54
54
<add key =" AzureBlobFileSystem.MaxDays:media" value =" 365" />
55
55
<add key =" AzureBlobFileSystem.UseDefaultRoute:media" value =" true" />
56
56
<add key =" AzureBlobFileSystem.UsePrivateContainer:media" value =" false" />
@@ -123,7 +123,7 @@ the cloud replace the `CloudImageService`setting with the following:
123
123
<setting key =" Container" value =" media" />
124
124
<setting key =" MaxBytes" value =" 8194304" />
125
125
<setting key =" Timeout" value =" 30000" />
126
- <setting key =" Host" value =" http ://[myAccountName].blob.core.windows.net/media" />
126
+ <setting key =" Host" value =" https ://[myAccountName].blob.core.windows.net/media" />
127
127
</settings >
128
128
</service >
129
129
</services >
Original file line number Diff line number Diff line change 6
6
<settings xdt : Transform =" InsertIfMissing" >
7
7
<setting key =" Container" value =" media" xdt : Locator =" Match(key)" xdt : Transform =" InsertIfMissing" />
8
8
<setting key =" MaxBytes" value =" 8194304" xdt : Locator =" Match(key)" xdt : Transform =" InsertIfMissing" />
9
- <setting key =" Timeout" value =" 30000" xdt : Locator =" Match(key)" xdt : Transform =" InsertIfMissing" />
10
- <setting key =" Host" value =" http ://[myAccountName].blob.core.windows.net" xdt : Locator =" Match(key)" xdt : Transform =" InsertIfMissing" />
9
+ <setting key =" Timeout" value =" 30000" xdt : Locator =" Match(key)" xdt : Transform =" InsertIfMissing" />
10
+ <setting key =" Host" value =" https ://[myAccountName].blob.core.windows.net" xdt : Locator =" Match(key)" xdt : Transform =" InsertIfMissing" />
11
11
</settings >
12
12
</service >
13
13
</services >
Original file line number Diff line number Diff line change 5
5
<!-- Disable the LocalFileImageService and enable this one when using virtual paths. -->
6
6
<!-- <service name="CloudImageService" type="ImageProcessor.Web.Services.CloudImageService, ImageProcessor.Web">
7
7
<settings>
8
- <setting key="Container" value=""/>
9
- <setting key="MaxBytes" value="8194304"/>
10
- <setting key="Timeout" value="30000"/>
11
- <setting key="Host" value="http ://yourhost.com/"/>
8
+ <setting key="Container" value="" />
9
+ <setting key="MaxBytes" value="8194304" />
10
+ <setting key="Timeout" value="30000" />
11
+ <setting key="Host" value="https ://yourhost.com/" />
12
12
</settings>
13
13
</service>-->
14
14
<service prefix =" remote.axd" name =" RemoteImageService" type =" ImageProcessor.Web.Services.RemoteImageService, ImageProcessor.Web" >
Original file line number Diff line number Diff line change 5
5
<Provider alias =" media" type =" Our.Umbraco.FileSystemProviders.Azure.AzureBlobFileSystem, Our.Umbraco.FileSystemProviders.Azure" >
6
6
<Parameters >
7
7
<add key =" containerName" value =" media" />
8
- <add key =" rootUrl" value =" http ://existing123456789.blob.core.windows.net/" />
8
+ <add key =" rootUrl" value =" https ://existing123456789.blob.core.windows.net/" />
9
9
<add key =" connectionString"
10
10
value=" DefaultEndpointsProtocol=https;AccountName=existing123456789;AccountKey=existingKey" />
11
11
<!--
You can’t perform that action at this time.
0 commit comments