appsettings.json 474 B

123456789101112131415161718192021222324
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "AllowedHosts": "*",
  9. "AllowedCors": "*",
  10. "Kestrel": {
  11. "Endpoints": {
  12. "Http": {
  13. "Url": "http://*:8082"
  14. }
  15. //"HttpsInlineCertFile": {
  16. // "Url": "https://*:8081",
  17. // "Certificate": {
  18. // "Path": "D:/cert/4410752_www.shvber.com.pfx",
  19. // "Password": "XM9yaM3R"
  20. // }
  21. //}
  22. }
  23. }
  24. }