51 lines
1.0 KiB
JSON
51 lines
1.0 KiB
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft": "Warning",
|
|
"Microsoft.Hosting.Lifetime": "Information"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"ReverseProxy": {
|
|
"Routes": {
|
|
"route1": {
|
|
"ClusterId": "cluster1",
|
|
"Match": {
|
|
"Path": "api/{**catchall}"
|
|
}
|
|
},
|
|
"route2": {
|
|
"ClusterId": "cluster1",
|
|
"Match": {
|
|
"Path": "image/{**catchall}"
|
|
},
|
|
"Transforms": [
|
|
{ "PathPattern": "/api/Image/{**catchall}" }
|
|
]
|
|
},
|
|
"route3": {
|
|
"ClusterId": "cluster2",
|
|
"Match": {
|
|
"Path": "{**catchall}"
|
|
}
|
|
}
|
|
},
|
|
"Clusters": {
|
|
"cluster1": {
|
|
"Destinations": {
|
|
"destination1": {
|
|
"Address": "https://localhost:7151/"
|
|
}
|
|
}
|
|
},
|
|
"cluster2": {
|
|
"Destinations": {
|
|
"destination1": {
|
|
"Address": "http://localhost:3000/"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |