appsettings.json 569 B

12345678910111213141516171819
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "AllowedHosts": "*",
  9. "JWT": {
  10. "Issuer": "zzy2025@qq.com",
  11. "Audience": "zzy2025@qq.com",
  12. "Key": "A86DA1301B954748B3B21B6AA9F2F743", //加密密钥
  13. "ExpireSeconds": 600 //密钥过期时间
  14. },
  15. "IpWhiteList": "172.16.8.154;127.0.0.1;192.168.1.5;::1",
  16. "ConnectionStrings": {
  17. "todoContext": "Server=172.16.8.154;Database=DopInterfacePlatform;uid=sa;pwd=ac%qams)aCXI;Trusted_Connection=false;TrustServerCertificate=True"
  18. }
  19. }