appsettings.json 290 B

1234567891011121314151617
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft": "Warning",
  6. "Microsoft.Hosting.Lifetime": "Information"
  7. }
  8. },
  9. "Kestrel": {
  10. "Endpoints": {
  11. "Http": {
  12. "Url": "http://localhost:8088"
  13. }
  14. }
  15. },
  16. "AllowedHosts": "*"
  17. }