-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathappsettings.json
66 lines (61 loc) · 1.79 KB
/
appsettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"ConnectionStrings": {
"ConnectionStringFromAppSettings": "DefaultEndpointsProtocol=https;AccountName=<YourAccount>;AccountKey=<YourKey>;EndpointSuffix=core.windows.net"
},
"AzCopyPath": "%ProgramFiles(x86)%\\Microsoft SDKs\\Azure\\AzCopy\\azcopy.exe",
"Storage": {
"Providers": {
"FirstAzure": {
"Type": "Azure",
"ConnectionString": "DefaultEndpointsProtocol=https;AccountName=<YourAccount>;AccountKey=<YourKey>;EndpointSuffix=core.windows.net"
},
"AnotherAzure": {
"Type": "Azure",
"ConnectionStringName": "ConnectionStringFromAppSettings"
},
"FirstFileSystem": {
"Type": "FileSystem"
},
"AnotherFileSystem": {
"Type": "FileSystem",
"RootPath": "../FileVault2"
}
},
"Stores": {
"Store1": {
"ProviderName": "FirstFileSystem"
},
"Store2": {
"ProviderName": "FirstFileSystem",
"AccessLevel": "Public",
"FolderName": "AnotherPath"
},
"Store3": {
"ProviderName": "FirstAzure",
"AccessLevel": "Private"
},
"Store4": {
"ProviderType": "Azure",
"ConnectionString": "DefaultEndpointsProtocol=https;AccountName=<YourAccount>;AccountKey=<YourKey>;EndpointSuffix=core.windows.net"
},
"Store5": {
"ProviderName": "AnotherAzure"
},
"Store6": {
"ProviderType": "Azure",
"ConnectionStringName": "ConnectionStringFromAppSettings"
}
},
"ScopedStores": {
"ScopedStore1": {
"ProviderName": "AnotherFileSystem",
"FolderNameFormat": "AnotherPath-{0}"
},
"ScopedStore2": {
"ProviderName": "AnotherAzure",
"AccessLevel": "Confidential",
"FolderNameFormat": "AnotherPath-{0}"
}
}
}
}