123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- server:
- port: ${ag-zuul.server.port}
- info:
- app:
- name: AG-ZUUL
- description: EHR Platform Gateway Service
- version: 1.0.0
- component: Zuul Server
- spring:
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- max-active: 5
- max-idle: 2
- min-idle: 2
- validation-query: SELECT 1
- test-on-borrow: true
- redis:
- database: 0
- timeout: 0
- pool:
- max-active: 8
- max-idle: 8
- max-wait: -1
- min-idle: 1
- zuul:
- config-priority: false
- ignored-services: '*'
- sensitive-headers:
- routes:
- svr-dfs:
- path: /dfs/**
- serviceId: svr-dfs
- svr-basic:
- path: /basic/**
- serviceId: svr-basic
- svr-quota:
- path: /quota/**
- serviceId: svr-quota
- svr-redis:
- path: /redis/**
- serivceId: svr-redis
- svr-resource:
- path: /resource/**
- serviceId: svr-resource
- svr-standard:
- path: /standard/**
- serviceId: svr-standard
- svr-authentication:
- path: /authentication/**
- serviceId: svr-authentication
- svr-health-profile:
- path: /profile/**
- serviceId: svr-health-profile
- svr-pack-analyzer:
- path: /pack-analyzer/**
- serviceId: svr-pack-analyzer
- svr-pack-mgr:
- path: /pack-mgr/**
- serviceId: svr-pack-mgr
- svr-pack-resolv:
- path: /pack-resolve/**
- serviceId: svr-pack-resolve
- hos-admin:
- path: /hos-admin/**
- serviceId: hos-admin
- svr-public-health:
- path: /public-health/**
- serviceId: svr-public-health-dm
- ---
- spring:
- profiles: dev
- datasource:
- url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: chenweishan
- password: chenweishan
- redis:
- host: 172.19.103.47
- port: 6379
- password: redis!@456
- zuul:
- routes:
- # 福州总部开放平台接口相关
- jkzl-server:
- path: /jkzl/**
- url: http://ssotest.yihu.cn/OpenPlatform/cgiBin/1.0/
- # 福州总部网关
- fz-gateway:
- path: /fzGateway/**
- url: http://service.yihu.com:8085/
- fastdfs-server:
- path: /file/**
- url: http://172.19.103.52:80/
- # 卫计委官网
- gov-server:
- path: /open/govServer/**
- url: http://www.srswjw.gov.cn/
- # 应急指挥
- emergency-server:
- path: /open/baidu/**
- url: http://yingyan.baidu.com/
|