appsettings.json 301 B

12345678910111213
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "ConnectionStrings": {
  9. "Redis": "localhost:6379,password=123456",
  10. "MySqlConnection": "Server=localhost;Database=wcs;User=root;Password=123456;"
  11. },
  12. "AllowedHosts": "*"
  13. }