You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
831B

  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Warning",
  5. "Microsoft.AspNetCore": "Error"
  6. }
  7. },
  8. "AllowedHosts": "*",
  9. "ConnectionStrings": {
  10. "DefaultConnection": "Server=SERVER_NAME;Database=ReAct_PME;Trusted_Connection=True;TrustServerCertificate=True"
  11. },
  12. "Jwt": {
  13. "Issuer": "http://192.168.4.3:7008", // METTRE URL de l'API du SERVEUR
  14. "Audience": "http://192.168.4.3:7286", // METTRE URL du WebUI du SERVEUR
  15. "ExpireMinutes": 60
  16. },
  17. "Cors": {
  18. "AllowedOrigins": [
  19. "http://localhost:7286",
  20. "http://192.168.4.3:7286", // METTRE L'IP du WebUI du SERVEUR
  21. "http://react_pme.entreprise.com:7286" // METTRE URL du WebUI du SERVEUR
  22. ]
  23. },
  24. "Params": {
  25. "Environment": "Production",
  26. "ApiUrl": "http://react_pme.entreprise.com:7286"
  27. }
  28. }