| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- spring:
- jpa:
- properties:
- hibernate.integration.envers.enabled: true
- jadira.usertype.autoRegisterUserTypes: true
- show-sql: false
- hibernate:
- ddl-auto: none
- 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:
- userInfoUri: ${security.server.url:http://localhost:8082}/user
- eureka:
- client:
- serviceUrl:
- defaultZone: http://localhost:8761/eureka/
- 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
- ---
- spring:
- profiles: dev
- jpa:
- show-sql: true
- properties:
- hibernate.use_sql_comments: true
- hibernate.format_sql: 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
- ---
- spring:
- profiles: docker
- security.server.url: http://app:8080/admin
- eureka:
- client:
- serviceUrl:
- defaultZone: http://discovery:8080/eureka/
- ---
- spring:
- profiles: staging
- profiles.include: docker
- rabbitmq:
- host: rabbitmq
- graylog:
- host: 192.168.241.61
- ---
- spring:
- profiles: uat
- profiles.include: docker
- rabbitmq:
- host: pemc-oracle.ss.exist.com
- logging.level:
- com.pemc.crss: INFO
- graylog:
- host: 192.168.235.6
- ---
- spring:
- profiles: pemc-staging
- profiles.include: docker
- rabbitmq:
- host: 192.168.39.117
- logging.level:
- com.pemc.crss: INFO
- ---
- spring:
- profiles: dcos
- rabbitmq:
- host: rabbitmq.marathon.l4lb.thisdcos.directory
- security.server.url: http://phase1app.marathon.l4lb.thisdcos.directory:8080/admin
- eureka:
- client:
- serviceUrl:
- defaultZone: http://phase1discovery.marathon.l4lb.thisdcos.directory:8080/eureka/
- instance:
- prefer-ip-address: false
- # HOST and PORT environment variable came from mesos as docker ENV
- hostname: ${HOST}
- noneSecurePort: ${PORT}
|