appsettings.Development.json 697 B

123456789101112131415161718192021222324252627
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "AllowedHosts": "*",
  9. "Kestrel": {
  10. "Endpoints": {
  11. "Http": {
  12. "Url": "http://*:8807"
  13. },
  14. "Https": {
  15. "Url": "https://*:8808"
  16. }
  17. }
  18. },
  19. "Azure": {
  20. "Storage": {
  21. "ConnectionString": "DefaultEndpointsProtocol=https;AccountName=teammodeltest;AccountKey=O2W2vadCqexDxWO+px+QK7y1sHwsYj8f/WwKLdOdG5RwHgW/Dupz9dDUb4c1gi6ojzQaRpFUeAAmOu4N9E+37A==;EndpointSuffix=core.chinacloudapi.cn",
  22. },
  23. "Redis": {
  24. "ConnectionString": "52.130.252.100:6379,password=habook,ssl=false,abortConnect=False,writeBuffer=10240"
  25. }
  26. }
  27. }