crss-admin-dev.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. spring:
  2. datasource:
  3. platform : postgres
  4. url: jdbc:postgresql://localhost:5432/crss_admin
  5. username: crss_admin
  6. password: crss_admin
  7. driverClassName: org.postgresql.Driver
  8. jpa:
  9. database: POSTGRESQL
  10. show-sql: true
  11. hibernate:
  12. ddl-auto: update
  13. properties:
  14. jadira.usertype.autoRegisterUserTypes: true
  15. javax.persistence.schema-generation.database.action: none
  16. javax.persistence.schema-generation.create-source: metadata
  17. javax.persistence.schema-generation.scripts.action: drop-and-create
  18. javax.persistence.schema-generation.scripts.create-target: target/create.sql
  19. javax.persistence.schema-generation.scripts.drop-target: target/drop.sql
  20. server:
  21. port: 8082
  22. security:
  23. oauth2:
  24. client:
  25. accessTokenUri: http://localhost:8082/oauth/access_token
  26. userAuthorizationUri: http://localhost:8080/oauth/authorize
  27. resource:
  28. userInfoUri: http://localhost:8082/user
  29. eureka:
  30. client:
  31. serviceUrl:
  32. defaultZone: http://localhost:8761/eureka/
  33. graylog:
  34. host: localhost
  35. crss:
  36. ldap:
  37. embedded: true
  38. protocol: "ldap"
  39. host: "localhost"
  40. port: 33389
  41. root-dn: "dc=wesmsys,dc=local"
  42. ldif: "classpath:embedded-ldap.ldif"
  43. user-search-base: ""
  44. admin-user: "uid=crssadmin,ou=Administrators,dc=wesmsys,dc=local"
  45. admin-password: "1qaz@WSX"
  46. username-field: "uid"
  47. domain: "wesmsys.local"