authentication.yml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. spring:
  2. datasource:
  3. platform : oracle
  4. url: jdbc:oracle:thin:@//192.168.241.62:1521/ORCL
  5. username: crss_reg
  6. password: crss_reg
  7. driverClassName: oracle.jdbc.OracleDriver
  8. jpa:
  9. database: ORACLE
  10. show-sql: true
  11. mail:
  12. host: smtp.gmail.com
  13. port: 587
  14. # TODO: replace this values
  15. username: demo.exist.pemc@gmail.com
  16. password: $pockTest
  17. properties:
  18. mail.smtp.auth: true
  19. mail.smtp.starttlls.enable: true
  20. mail.smtp.starttls.required: true
  21. #we dont need spring mvc here
  22. freemarker:
  23. enabled: false
  24. template-loader-path: classpath:/mail/templates
  25. multipart:
  26. maxFileSize: "25Mb"
  27. maxRequestSize: "25Mb"
  28. storage:
  29. file:
  30. rootFolder: registration-dir
  31. security:
  32. oauth2:
  33. client:
  34. clientId: crss
  35. clientSecret: crsssecret
  36. authorized-grant-types: authorization_code,refresh_token,password
  37. scope: openid
  38. access-token-validity-seconds: 3600
  39. server:
  40. undertow:
  41. accesslog:
  42. dir: target/logs
  43. enabled: true
  44. pattern: combined
  45. compression:
  46. enabled: true
  47. min-response-size: 1