| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- spring:
- jpa:
- properties:
- jadira.usertype.autoRegisterUserTypes: true
- http:
- multipart:
- maxFileSize: "25Mb"
- maxRequestSize: "25Mb"
- security:
- oauth2:
- client:
- accessTokenUri: http://localhost:8082/oauth/access_token
- userAuthorizationUri: http://localhost:8082/oauth/authorize
- clientId: crss
- clientSecret: crsssecret
- authorized-grant-types: authorization_code,refresh_token,password
- scope: openid
- access-token-validity-seconds: 3600
- resource:
- userInfoUri: http://localhost:8082/user
- eureka:
- client:
- serviceUrl:
- defaultZone: http://localhost:8761/eureka/
- # healthcheck:
- # enabled: true
- lease:
- duration: 5
- instance:
- leaseRenewalIntervalInSeconds: 1
- leaseExpirationDurationInSeconds: 2
- feign:
- hystrix:
- enabled: false
- 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
|