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.

30 lines
882B

  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. "SecretKey": "5357f3ec-0c27-49f6-b68e-28f5c2b260a5",
  14. "Issuer": "http://192.168.4.3:7008", // METTRE URL de l'API du SERVEUR
  15. "Audience": "http://192.168.4.3:7286", // METTRE URL du WebUI du SERVEUR
  16. "ExpireMinutes": 60
  17. },
  18. "Cors": {
  19. "AllowedOrigins": [
  20. "http://localhost:7286",
  21. "http://192.168.4.3:7286", // METTRE L'IP du WebUI du SERVEUR
  22. "http://react_pme.entreprise.com:7286" // METTRE URL du WebUI du SERVEUR
  23. ]
  24. },
  25. "Params": {
  26. "Environment": "Production",
  27. "ApiUrl": "http://react_pme.entreprise.com:7286"
  28. }
  29. }