| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- spring:
- jpa:
- properties:
- jadira.usertype.autoRegisterUserTypes: true
- http:
- multipart:
- maxFileSize: "25Mb"
- maxRequestSize: "25Mb"
- security:
- oauth2:
- client:
- accessTokenUri: http://app:8080/oauth/access_token
- userAuthorizationUri: http://app:8080/oauth/authorize
- clientId: crss
- clientSecret: crsssecret
- authorized-grant-types: authorization_code,refresh_token,password
- scope: openid
- access-token-validity-seconds: 3600
- resource:
- userInfoUri: http://app:8080/user
- eureka:
- client:
- serviceUrl:
- defaultZone: http://discovery:8080/eureka/
- # healthcheck:
- # enabled: true
- feign:
- hystrix:
- enabled: false
- server:
- undertow:
- accesslog:
- dir: target
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
- jackson:
- # for further customization please consult the documentation:
- # http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-customize-the-jackson-objectmapper
- # https://github.com/FasterXML/jackson-databind/wiki
- # deserialization:
- # FAIL_ON_UNKNOWN_PROPERTIES: true
- # DEFAULT_VIEW_INCLUSION: true
- crss:
- ldap:
- protocol: "ldaps"
- host: "WIN-BJCG9NGATK8.wesmsys.local"
- port: 636
- root-dn: "dc=wesmsys,dc=local"
- user-search-base: ""
- admin-user: "wesmsys\\crssadmin"
- admin-password: "1qaz@WSX"
- username-field: "userPrincipalName"
- domain: "wesmsys.local"
- embedded: false
|