| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- spring:
- jpa:
- properties:
- hibernate.integration.envers.enabled: true
- jadira.usertype.autoRegisterUserTypes: true
- show-sql: false
- hibernate:
- ddl-auto: none
- dialect: org.hibernate.dialect.PostgreSQLDialect
- hbm2ddl:
- import_files:
- datasource:
- platform : postgres
- driverClassName: org.postgresql.Driver
- connectionTimeout: 10000
- maxPoolSize: 20
- test-on-borrow: true
- validation-query: SELECT 1
- redis:
- host: redis.marathon.l4lb.thisdcos.directory
- rabbitmq:
- host: rabbitmq.marathon.l4lb.thisdcos.directory
- security:
- oauth2:
- client:
- accessTokenUri: ${security.server.url:http://localhost:8082}/oauth/access_token
- userAuthorizationUri: ${security.server.url: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:
- filter-order: 3
- userInfoUri: ${security.server.url:http://localhost:8082}/user
- server:
- undertow:
- accesslog:
- dir: target
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
- logging:
- pattern:
- level: 'username:%X{username:-system} %5p'
- level:
- com.pemc.crss: DEBUG
- com.netflix: WARN
- org.springframework.cloud: WARN
- graylog:
- host: logginggraylog.marathon.l4lb.thisdcos.directory
- crss:
- api.gateway: http://crssapplication-main-ui.marathon.l4lb.thisdcos.directory:8080
|