123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- logging:
- level:
- com:
- netflix: INFO
- org:
- springframework:
- web: INFO
- hibernate: ERROR
- ribbon:
- ReadTimeout: 30000
- ConnectTimeout: 10000
- logging.level.root: INFO
- netflix:
- metrics:
- rest:
- metricName: api
- # service routes
- zuul:
- addProxyHeaders: false
- ignoredServices: '*'
- routes:
- packages:
- path: /api/v1.0/packages
- serviceId: svr-pack-mgr
- package_json:
- path: /api/v1.0/json_package
- serviceId: svr-pack-mgr
- esb_log:
- path: /api/v1.0/esb/uploadLog
- serviceId: svr-esb
- sanofi_support:
- path: /api/v1.0/sanofi/physic_signs/**
- serviceId: svr-health-profile
- stripPrefix: false
- health_profile:
- path: /api/v1.0/health_profiles/**
- serviceId: svr-health-profile
- stripPrefix: false
- ---
- spring:
- profiles: dev
- thymeleaf:
- cache: false
- metrics:
- export:
- statsd:
- host: 192.168.1.221
- port: 8125
- #server:
- # ssl:
- # key-store-password: 123456
- # key-password: 123456
- ---
- spring:
- profiles: alpha
- thymeleaf:
- cache: false
- metrics:
- export:
- statsd:
- host: 192.168.1.221
- port: 8125
- server:
- ssl:
- key-store: C:/Windows/tomcat.keystore
- key-store-password: 123456
- key-password: 123456
- ---
- spring:
- profiles: test
- thymeleaf:
- cache: false
- metrics:
- export:
- statsd:
- host: 192.168.1.221
- port: 8125
- server:
- ssl:
- key-store-password: 123456
- key-store: tomcat.keystore
- key-password: 123456
- ---
- spring:
- profiles: prod
- server:
- ssl:
- key-store-password: 123456
- key-password: 123456
|