0
0
RhSolutions-Api/RhSolutions.Api/appsettings.json

22 lines
432 B
JSON
Raw Normal View History

2022-12-14 09:53:10 +03:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Information"
}
},
2023-10-30 21:49:58 +03:00
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://0.0.0.0:5000",
"Protocols": "Http1AndHttp2"
},
"gRPC": {
"Url": "http://0.0.0.0:43000",
"Protocols": "Http2"
}
}
2022-12-14 09:53:10 +03:00
}
2023-10-30 21:49:58 +03:00
}