| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- 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.properties:
- 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
- eureka:
- client:
- serviceUrl:
- defaultZone: http://discovery:8080/eureka/
- ---
- spring:
- profiles: staging
- profiles.include: docker
- rabbitmq:
- host: 192.168.241.62
- # TODO graylog
- graylog:
- host: pemc.integration.exist.com
- ---
- spring:
- profiles: uat
- profiles.include: docker
- rabbitmq:
- host: pemc-oracle.ss.exist.com
- graylog:
- host: pemc.integration.exist.com
|