appsettings.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft": "Warning",
  6. "Microsoft.Hosting.Lifetime": "Information"
  7. }
  8. },
  9. "AllowedHosts": "*",
  10. "TokenKey": "Authorization",
  11. "TokenValue": "123456",
  12. "JwtKeyName": "JwtKeyName",
  13. "JwtSecurityKey": "1CC76841-F25D-4389-89FE-0F9451163CF1",
  14. "DbPath": {
  15. "Project": "/db/Projects.json",
  16. "Tasks": "/db/Tasks.json"
  17. },
  18. "UseRedis": "0",
  19. "RedisDbPath": {
  20. "Project": "IMCS.CCS:Project",
  21. "Tasks": "IMCS.CCS:Tasks"
  22. },
  23. "RedisConnectionString": "192.168.50.111:6379,password=123456,defaultDatabase=0",
  24. "ConnectionStrings": {
  25. "mysqlContext": "server=localhost;port=3306;database=ccs_331;uid=root;pwd=123456;CharSet=utf8;Allow Zero Datetime=True",
  26. "ecsUrlContext": "http://localhost:9099/api/authority/taskNode/taskNodeCallback",
  27. //"FTPServer": "192.168.170.25",
  28. //"FTPUser": "PROG",
  29. //"FTPPwd": "abc.1234",
  30. "FTPServer": "127.0.0.1",
  31. "FTPUser": "test",
  32. "FTPPwd": "test",
  33. "fanucUrlContext": "http://127.0.0.1:5100/fanuc/",
  34. "opcuacUrlContext": "http://127.0.0.1:8010/opcua/",
  35. "hdhUrlContext": "http://127.0.0.1:8011/heidenhain/"
  36. }
  37. }