appsettings.json 920 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "App": {
  3. "SelfUrl": "https://localhost:44376",
  4. "ClientUrl": "http://localhost:9527",
  5. "CorsOrigins": "http://localhost:9527,http://localhost:44307",
  6. "RedirectAllowedUrls": "http://localhost:9527,http://localhost:44307"
  7. },
  8. "ConnectionStrings": {
  9. "Default": "Server=123.60.180.165;Database=DOPCore;Uid=root; Pwd=5heng=uN;Allow User Variables=True;sslMode=None;"
  10. },
  11. "Redis": {
  12. "Configuration": "127.0.0.1"
  13. },
  14. "StringEncryption": {
  15. "DefaultPassPhrase": "DF6xhNaQSsb0PlM2"
  16. },
  17. "OpenIddict": {
  18. "Applications": {
  19. "Web_App": {
  20. "ClientId": "basic-web",
  21. "RootUrl": "http://localhost:9527"
  22. },
  23. "Blazor": {
  24. "ClientId": "blazor-app",
  25. "RootUrl": "http://localhost:44307"
  26. },
  27. "Business": {
  28. "ClientId": "business-app",
  29. "RootUrl": "http://localhost:51186",
  30. "ClientSecret": "1q2w3e*"
  31. }
  32. }
  33. }
  34. }