appsettings.json 382 B

12345678910111213141516171819
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "AllowedHosts": "*",
  9. "Auth":{
  10. "Authority": "https://my-authority.net/",
  11. "Audience": "https://my-application.net",
  12. "PolicyClaims": {
  13. "Sample": ["sample"]
  14. }
  15. },
  16. "Cors": {
  17. "Origins": ["http://localhost:4200"]
  18. }
  19. }