You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
961 B
44 lines
961 B
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft": "Warning",
|
|
"Microsoft.Hosting.Lifetime": "Information"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"GlobalConfiguration": {
|
|
},
|
|
"Routes": [
|
|
{
|
|
"DownstreamPathTemplate": "/{url}",
|
|
"DownstreamScheme": "http",
|
|
"ServiceName": "MyCompanyName.MyProjectName.Api",
|
|
"LoadBalancerOptions": {
|
|
"Type": "LeastConnection"
|
|
},
|
|
"UpstreamPathTemplate": "/gateway/{url}",
|
|
"UpstreamHttpMethod": [
|
|
"Get",
|
|
"Post",
|
|
"Put",
|
|
"Delete"
|
|
]
|
|
},
|
|
{
|
|
"DownstreamPathTemplate": "/{url}",
|
|
"DownstreamScheme": "ws",
|
|
"ServiceName": "MyCompanyName.MyProjectName.Api",
|
|
"LoadBalancerOptions": {
|
|
"Type": "LeastConnection"
|
|
},
|
|
"UpstreamPathTemplate": "/ws/{url}",
|
|
"UpstreamHttpMethod": [
|
|
"Get",
|
|
"Post",
|
|
"Put",
|
|
"Delete"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
|