123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- 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
- eip:
- tenant: jkzl
- ---
- spring:
- profiles: dev
- datasource:
- url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: weifuwu
- password: weifuwu
- thymeleaf:
- cache: false
- metrics:
- export:
- statsd:
- host: 172.19.103.73
- port: 8125
- #server:
- # ssl:
- # key-store-password: 123456
- # key-password: 123456
- ---
- spring:
- profiles: alpha
- datasource:
- url: jdbc:mysql://192.168.1.220:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: ha
- password: ha
- thymeleaf:
- cache: false
- metrics:
- export:
- statsd:
- host: 192.168.1.221
- port: 8125
- ---
- spring:
- profiles: test
- datasource:
- url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: weifuwu
- password: weifuwu
- thymeleaf:
- cache: false
- metrics:
- export:
- statsd:
- host: 172.19.103.73
- port: 8125
- ---
- spring:
- profiles: prod
- datasource:
- url: jdbc:mysql://11.1.2.5:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: ha
- password: jkzlxm
- thymeleaf:
- cache: false
- metrics:
- export:
- statsd:
- host: 11.1.2.5
- port: 8125
- ---
- spring:
- profiles: prod_fz
- datasource:
- url: jdbc:mysql://11.1.2.5:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: healthcloud
- password: GP8Qz4qU
- thymeleaf:
- cache: false
- metrics:
- export:
- statsd:
- host: 11.1.2.5
- port: 8125
- ---
- spring:
- profiles: prod_sr
- datasource:
- url: jdbc:mysql://10.176.97.9:3310/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: healthcloud
- password: GP8Qz4qU
- thymeleaf:
- cache: false
- metrics:
- export:
- statsd:
- host: 10.176.97.10
- port: 8125
- ---
- spring:
- profiles: prod_fzzy
- datasource:
- url: jdbc:mysql://100.100.1.159:3310/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: healthcloud
- password: GP8Qz4qU
- thymeleaf:
- cache: false
- metrics:
- export:
- statsd:
- host: 100.100.1.162
- port: 8125
|