| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- spring:
- datasource:
- platform : postgres
- url: jdbc:postgresql://localhost:5432/crss_admin
- username: crss_admin
- password: crss_admin
- driverClassName: org.postgresql.Driver
- jpa:
- database: POSTGRESQL
- show-sql: false
- hibernate:
- ddl-auto: update
- properties:
- hibernate:
- dialect: org.hibernate.dialect.PostgreSQL94Dialect
- jadira.usertype.autoRegisterUserTypes: true
- javax.persistence.schema-generation.database.action: none
- javax.persistence.schema-generation.create-source: metadata
- javax.persistence.schema-generation.scripts.action: drop-and-create
- javax.persistence.schema-generation.scripts.create-target: target/create.sql
- javax.persistence.schema-generation.scripts.drop-target: target/drop.sql
- server:
- port: 8082
- security:
- oauth2:
- client:
- accessTokenUri: http://localhost:8082/oauth/access_token
- userAuthorizationUri: http://localhost:8080/oauth/authorize
- resource:
- userInfoUri: http://localhost:8082/user
- eureka:
- client:
- serviceUrl:
- defaultZone: http://localhost:8761/eureka/
- graylog:
- host: localhost
- crss:
- ldap:
- embedded: true
- protocol: LDAP
- host: "localhost"
- port: 33389
- root-dn: "dc=wesmsys,dc=local"
- ldif: "classpath:embedded-ldap.ldif"
- user-search-base: ""
- admin-user: "uid=crssadmin,ou=Administrators,dc=wesmsys,dc=local"
- admin-password: "1qaz@WSX"
- username-field: "uid"
- domain: "wesmsys.local"
- passwordOpEnabled: false
|