crss-admin.yml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. spring:
  2. jpa:
  3. database: ORACLE
  4. properties:
  5. hibernate:
  6. dialect: org.hibernate.dialect.Oracle10gDialect
  7. integration.envers.enabled: true
  8. jadira.usertype.autoRegisterUserTypes: true
  9. http:
  10. multipart:
  11. maxFileSize: "25Mb"
  12. maxRequestSize: "25Mb"
  13. resources:
  14. chain:
  15. gzipped: true
  16. security:
  17. oauth2:
  18. client:
  19. accessTokenUri: http://app:8080/admin/oauth/access_token
  20. userAuthorizationUri: http://app:8080/admin/oauth/authorize
  21. clientId: crss
  22. clientSecret: crsssecret
  23. authorized-grant-types: authorization_code,refresh_token,password
  24. scope: openid
  25. access-token-validity-seconds: 3600
  26. resource:
  27. userInfoUri: http://app:8080/admin/user
  28. eureka:
  29. client:
  30. serviceUrl:
  31. defaultZone: http://discovery:8080/eureka/
  32. # healthcheck:
  33. # enabled: true
  34. feign:
  35. hystrix:
  36. enabled: false
  37. server:
  38. undertow:
  39. accesslog:
  40. dir: target
  41. enabled: true
  42. pattern: combined
  43. compression:
  44. enabled: true
  45. min-response-size: 1
  46. jackson:
  47. # for further customization please consult the documentation:
  48. # http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-customize-the-jackson-objectmapper
  49. # https://github.com/FasterXML/jackson-databind/wiki
  50. # deserialization:
  51. # FAIL_ON_UNKNOWN_PROPERTIES: true
  52. # DEFAULT_VIEW_INCLUSION: true
  53. crss:
  54. ldap:
  55. protocol: LDAPS
  56. host: "192.168.241.67"
  57. port: 636
  58. root-dn: "dc=wesmsys,dc=local"
  59. user-search-base: ""
  60. admin-user: "wesmsys\\crssadmin"
  61. admin-password: "1qaz@WSX"
  62. username-field: "userPrincipalName"
  63. domain: "wesmsys.local"
  64. embedded: false
  65. passwordOpEnabled: true