-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproxies.json
More file actions
23 lines (23 loc) · 788 Bytes
/
proxies.json
File metadata and controls
23 lines (23 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"$schema": "http://json.schemastore.org/proxies",
"proxies": {
"root": {
"matchCondition": {
"route": "/"
},
"backendUri": "https://%AZURE_STORAGE_ACCOUNT%.blob.core.windows.net/%STATIC_CONTENT_CONTAINER%/index.html"
},
"index": {
"matchCondition": {
"route": "/index.html"
},
"backendUri": "https://%AZURE_STORAGE_ACCOUNT%.blob.core.windows.net/%STATIC_CONTENT_CONTAINER%/index.html"
},
"lib": {
"matchCondition": {
"route": "/lib/{*restOfPath}"
},
"backendUri": "https://%AZURE_STORAGE_ACCOUNT%.blob.core.windows.net/%STATIC_CONTENT_CONTAINER%/lib/{*restOfPath}"
}
}
}