appsettings.json 747 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "ConnectionStrings": {
  3. "Default": "Server=.\\SQLEXPRESS; Database=VberAdminDb; Trusted_Connection=True;"
  4. },
  5. "App": {
  6. "ServerRootAddress": "http://localhost:5550/",
  7. "ClientRootAddress": "http://localhost:5551/",
  8. "CorsOrigins": "http://localhost:5551,http://localhost:5552,http://localhost:5553,http://localhost:5554"
  9. },
  10. "Authentication": {
  11. "JwtBearer": {
  12. "IsEnabled": "true",
  13. "SecurityKey": "VberAdmin_C421AAEE0D114E9C",
  14. "Issuer": "VberAdmin",
  15. "Audience": "VberAdmin"
  16. }
  17. },
  18. "Kestrel": {
  19. "Endpoints": {
  20. "Http": {
  21. "Url": "https://localhost:44311/"
  22. }
  23. }
  24. },
  25. "Swagger": {
  26. "ShowSummaries": false,
  27. "WebSiteRootAddress": "http://localhost:5550/"
  28. }
  29. }