| 123456789101112131415161718192021222324252627282930 |
- spring:
- datasource:
- url: jdbc:postgresql://localhost:5432/crss?currentSchema=admin
- username: postgres
- password: postgres
- jpa:
- show-sql: false
- generate-ddl: false
- properties:
- hibernate:
- dialect: org.hibernate.dialect.PostgreSQLDialect
- crss:
- security:
- oauth2:
- api-gateway: http://localhost:8080
- default-redirect-uri: http://localhost:8087
- registered-redirect-uris: http://localhost:8087,http://localhost:8089
- ldap:
- protocol: LDAPS
- host: "192.168.241.174"
- port: 636
- root-dn: "dc=wesmsys,dc=local"
- user-search-base: MO,MP,SO
- admin-user: "wesmsys\\Administrator"
- admin-password: "ex1stw1nd0wsaD"
- username-field: "userPrincipalName"
- domain: "wesmsys.local"
- embedded: false
- passwordOpEnabled: true
- passwordExpiryField: "msDS-UserPasswordExpiryTimeComputed"
|