svr-internet-hospital.yml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  1. #通用的配置不用区分环境变量
  2. server:
  3. port: ${server.svr-internet-hospital-port}
  4. spring:
  5. aop:
  6. proxy-target-class: true
  7. datasource:
  8. max-active: 200
  9. max-idle: 200 #最大空闲连接
  10. min-idle: 10 #最小空闲连接
  11. validation-query-timeout: 20
  12. log-validation-errors: true
  13. validation-interval: 60000 #避免过度验证,保证验证不超过这个频率——以毫秒为单位。如果一个连接应该被验证,但上次验证未达到指定间隔,将不再次验证。
  14. validation-query: SELECT 1 #SQL 查询, 用来验证从连接池取出的连接, 在将连接返回给调用者之前。 如果指定, 则查询必须是一个SQL SELECT 并且必须返回至少一行记录
  15. test-on-borrow: true #指明是否在从池中取出连接前进行检验, 如果检验失败, 则从池中去除连接并尝试取出另一个。注意: 设置为true 后如果要生效,validationQuery 参数必须设置为非空字符串
  16. test-on-return: true #指明是否在归还到池中前进行检验 注意: 设置为true 后如果要生效validationQuery 参数必须设置为非空字符串
  17. idle-timeout: 20000
  18. connection-test-query: SELECT 1
  19. num-tests-per-eviction-run: 200 #在每次空闲连接回收器线程(如果有)运行时检查的连接数量,最好和maxActive
  20. test-while-idle: true #指明连接是否被空闲连接回收器(如果有)进行检验,如果检测失败,则连接将被从池中去除
  21. min-evictable-idle-time-millis: 3600000 #连接池中连接,在时间段内一直空闲,被逐出连接池的时间(1000*60*60),以毫秒为单位
  22. time-between-eviction-runs-millis: 300000 #在空闲连接回收器线程运行期间休眠的时间值,以毫秒为单位,一般比minEvictableIdleTimeMillis小
  23. http:
  24. multipart:
  25. max-file-size: 30MB
  26. # location: D:/work/soft_dev/IdeaWorkSpace/wlyy2.0/svr/svr-patient/temp_file/
  27. # resolve-lazily: true
  28. redis:
  29. database: 0 # Database index used by the connection factory.
  30. password: # Login password of the redis server.
  31. timeout: 120000 # 连接超时时间(毫秒) 60秒
  32. pool:
  33. max-active: 20 # 连接池最大连接数(使用负值表示没有限制)
  34. max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)
  35. max-idle: 20 # 连接池中的最大空闲连接
  36. min-idle: 5 # 连接池中的最小空闲连接
  37. mail:
  38. default-encoding: UTF-8
  39. #端口
  40. port: 25
  41. #协议
  42. protocol: smtp
  43. properties.mail.smtp.auth: true
  44. properties.mail.smtp.starttls.enable: true
  45. properties.mail.smtp.starttls.required: true
  46. host: smtp.163.com
  47. #发送者的邮箱密码
  48. password: xmijk181016jkzl
  49. #发送者的邮箱账号
  50. username: i_jiankang@163.com
  51. es:
  52. index:
  53. servicePackLog: base_service_package_log
  54. type:
  55. servicePackLog: base_service_package_log
  56. fast-dfs:
  57. connect-timeout: 2 #链接超时时间
  58. network-timeout: 30
  59. charset: ISO8859-1 #编码
  60. http:
  61. tracker-http-port: 80
  62. anti-steal-token: no
  63. secret-key: FastDFS1234567890
  64. pool: #连接池大小
  65. init-size: 5
  66. max-size: 20
  67. wait-time: 500
  68. configDefault: # 默认配置
  69. saasId: xmjkzl_saasId
  70. express:
  71. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  72. sf_code: JKZL
  73. sf_check_word: QkeIfIvQdheqIv2cVSgAUnBU29lfNbVk
  74. ---
  75. spring:
  76. profiles: jwdev
  77. datasource:
  78. driver-class-name: com.mysql.jdbc.Driver
  79. url: jdbc:mysql://172.26.0.114/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  80. username: root
  81. password: jkzlehr
  82. elasticsearch:
  83. cluster-name: jkzl #集群名 默认elasticsearch
  84. cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  85. client-transport-sniff: false
  86. jest:
  87. uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  88. connection-timeout: 60000 # Connection timeout in milliseconds.
  89. multi-threaded: true # Enable connection requests from multiple execution threads.
  90. activemq:
  91. broker-url: tcp://172.26.0.116:61616
  92. user: admin
  93. password: admin
  94. redis:
  95. host: 172.26.0.253 # Redis server host.
  96. port: 6379 # Redis server port.
  97. # password: jkzl_ehr
  98. # zipkin:
  99. # base-url: http://localhost:9411 #日志追踪的地址
  100. fastDFS:
  101. fastdfs_file_url: http://172.26.0.110:8888/
  102. fast-dfs:
  103. tracker-server: 172.26.0.110:22122 #服务器地址
  104. # 短信发送地址
  105. jw:
  106. smsUrl: http://svr-base:10020/sms_gateway/send
  107. myFamily:
  108. qrCodeFailurTime: 2
  109. wechat:
  110. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段
  111. # 短信验证码发送的客户端标识,居民端
  112. sms:
  113. clientId: EwC0iRSrcP
  114. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  115. demo:
  116. flag: true
  117. hospital:
  118. url: https://wx.xmzsh.com
  119. mqUser: JKZL
  120. mqPwd: 123456
  121. SourceSysCode: S60
  122. TargetSysCode: S01
  123. im:
  124. im_list_get: http://172.26.0.105:3000/
  125. data_base_name: im_internet_hospital
  126. # 上传文件临时路径配置
  127. FileTempPath:
  128. upload_temp_path : /var/local/temp
  129. image_path : /var/local/upload/images
  130. voice_path : /var/local/upload/voice
  131. chat_file_path : /var/local/upload/chat
  132. es:
  133. index:
  134. Statistics: hlw_quota_test
  135. type:
  136. Statistics: hlw_quota_test
  137. host: http://172.26.0.112:9200
  138. tHost: 172.26.0.112:9300
  139. clusterName: jkzl
  140. securityUser: lion:jkzlehr
  141. #是否开启i健康接口 0关闭,1开启
  142. testPattern:
  143. sign: 0
  144. wlyy:
  145. url: http://www.xmtyw.cn/wlyytest/
  146. ---
  147. spring:
  148. profiles: jwtest
  149. datasource:
  150. driver-class-name: com.mysql.jdbc.Driver
  151. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  152. username: ssgg
  153. password: ssgg@jkzl2019
  154. elasticsearch:
  155. cluster-name: jkzl #集群名 默认elasticsearch
  156. cluster-nodes: 192.0.33.26:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  157. client-transport-sniff: false
  158. jest:
  159. uris: http://192.0.33.26:9300
  160. connection-timeout: 60000 # Connection timeout in milliseconds.
  161. multi-threaded: true # Enable connection requests from multiple execution threads.
  162. activemq:
  163. broker-url: tcp://59.61.92.90:9103
  164. user: jkzl
  165. password: jkzlehr
  166. redis:
  167. host: 192.0.33.26 # Redis server host.
  168. port: 6390 # Redis server port.
  169. password: Kb6wKDQP1W4
  170. fastDFS:
  171. fastdfs_file_url: http://192.0.33.26:8888/
  172. fast-dfs:
  173. tracker-server: 192.0.33.26:22122 #服务器地址
  174. wechat:
  175. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  176. # 短信验证码发送的客户端标识,居民端
  177. sms:
  178. clientId: EwC0iRSrcP #todo 待配置
  179. myFamily:
  180. qrCodeFailurTime: 2
  181. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  182. demo:
  183. flag: false
  184. hospital:
  185. url: https://wx.xmzsh.com
  186. mqUser: JKZL
  187. mqPwd: 123456
  188. SourceSysCode: S60
  189. TargetSysCode: S01
  190. im:
  191. im_list_get: http://192.0.33.103:3000/
  192. data_base_name: im
  193. # 上传文件临时路径配置
  194. FileTempPath:
  195. upload_temp_path : /var/local/temp
  196. image_path : /var/local/upload/images
  197. voice_path : /var/local/upload/voice
  198. chat_file_path : /var/local/upload/chat
  199. es:
  200. index:
  201. Statistics: hlw_quota_test
  202. type:
  203. Statistics: hlw_quota_test
  204. host: http://172.26.0.112:9200
  205. tHost: 172.26.0.112:9300
  206. clusterName: jkzl
  207. securityUser: lion:jkzlehr
  208. #是否开启i健康接口 0关闭,1开启
  209. testPattern:
  210. sign: 0
  211. wlyy:
  212. url: http://www.xmtyw.cn/wlyytest/
  213. ---
  214. spring:
  215. profiles: jwprod
  216. datasource:
  217. driver-class-name: com.mysql.jdbc.Driver
  218. url: jdbc:mysql://192.0.33.27:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  219. username: im
  220. password: 2oEq3Kf7
  221. elasticsearch:
  222. cluster-name: jkzl #集群名 默认elasticsearch
  223. cluster-nodes: 192.0.33.26:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  224. client-transport-sniff: false
  225. jest:
  226. uris: http://192.0.33.26:9300
  227. connection-timeout: 60000 # Connection timeout in milliseconds.
  228. multi-threaded: true # Enable connection requests from multiple execution threads.
  229. activemq:
  230. broker-url: tcp://59.61.92.90:9103
  231. user: jkzl
  232. password: jkzlehr
  233. redis:
  234. host: 192.0.33.26 # Redis server host.
  235. port: 6390 # Redis server port.
  236. password: Kb6wKDQP1W4
  237. fastDFS:
  238. fastdfs_file_url: http://192.0.33.26:8888/
  239. fast-dfs:
  240. tracker-server: 192.0.33.26:22122 #服务器地址
  241. wechat:
  242. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  243. # 短信验证码发送的客户端标识,居民端
  244. sms:
  245. clientId: EwC0iRSrcP #todo 待配置
  246. myFamily:
  247. qrCodeFailurTime: 2
  248. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  249. demo:
  250. flag: false
  251. hospital:
  252. url: https://wx.xmzsh.com
  253. mqUser: JKZL
  254. mqPwd: 123456
  255. SourceSysCode: S60
  256. TargetSysCode: S01
  257. im:
  258. im_list_get: http://172.16.1.42:3000/
  259. data_base_name: im
  260. # 上传文件临时路径配置
  261. FileTempPath:
  262. upload_temp_path : /var/local/temp
  263. image_path : /var/local/upload/images
  264. voice_path : /var/local/upload/voice
  265. chat_file_path : /var/local/upload/chat
  266. es:
  267. index:
  268. Statistics: hlw_quota_test
  269. type:
  270. Statistics: hlw_quota_test
  271. host: http://172.26.0.112:9200
  272. tHost: 172.26.0.112:9300
  273. clusterName: jkzl
  274. securityUser: lion:jkzlehr
  275. #是否开启i健康接口 0关闭,1开启
  276. testPattern:
  277. sign: 0
  278. wlyy:
  279. url: http://www.xmtyw.cn/wlyytest/
  280. ---
  281. spring:
  282. profiles: jwOracleTest
  283. datasource:
  284. driver-class-name: oracle.jdbc.driver.OracleDriver
  285. url: jdbc:oracle:thin:@172.26.0.141:1521:helowin
  286. username: normal
  287. password: normal
  288. jpa:
  289. properties:
  290. hibernate:
  291. dialect: org.hibernate.dialect.Oracle10gDialect
  292. show_sql: true
  293. database: oracle
  294. # url: jdbc:mysql://172.19.103.77/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  295. # username: root
  296. # password: 123456
  297. elasticsearch:
  298. cluster-name: jkzl #集群名 默认elasticsearch
  299. cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  300. client-transport-sniff: false
  301. jest:
  302. uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  303. connection-timeout: 60000 # Connection timeout in milliseconds.
  304. multi-threaded: true # Enable connection requests from multiple execution threads.
  305. activemq:
  306. broker-url: tcp://172.26.0.116:61616
  307. user: admin
  308. password: admin
  309. redis:
  310. host: 172.26.0.253 # Redis server host.
  311. port: 6379 # Redis server port.
  312. fastDFS:
  313. fastdfs_file_url: http://172.26.0.110:8888/
  314. fast-dfs:
  315. tracker-server: 172.26.0.110:22122 #服务器地址
  316. wechat:
  317. id: 97ed8a0a-4f07-4b85-ab02-b716c611a464 # base库中,wx_wechat 的id字段
  318. # 短信验证码发送的客户端标识,居民端
  319. sms:
  320. clientId: EwC0iRSrcP
  321. myFamily:
  322. qrCodeFailurTime: 2
  323. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  324. demo:
  325. flag: true
  326. hospital:
  327. url: https://wx.xmzsh.com
  328. mqUser: JKZL
  329. mqPwd: 123456
  330. SourceSysCode: S60
  331. TargetSysCode: S01
  332. im:
  333. im_list_get: http://172.26.0.105:3000/
  334. data_base_name: im_internet_hospital
  335. # 上传文件临时路径配置
  336. FileTempPath:
  337. upload_temp_path : /var/local/temp
  338. image_path : /var/local/upload/images
  339. voice_path : /var/local/upload/voice
  340. chat_file_path : /var/local/upload/chat
  341. es:
  342. index:
  343. Statistics: hlw_quota_test
  344. type:
  345. Statistics: hlw_quota_test
  346. host: http://172.26.0.112:9200
  347. tHost: 172.26.0.112:9300
  348. clusterName: jkzl
  349. securityUser: lion:jkzlehr
  350. #是否开启i健康接口 0关闭,1开启
  351. testPattern:
  352. sign: 0
  353. wlyy:
  354. url: http://www.xmtyw.cn/wlyytest/
  355. ---
  356. spring:
  357. profiles: jwOracleProd
  358. ## ==眼科医院 数据库========================================================================
  359. datasource:
  360. driver-class-name: oracle.jdbc.driver.OracleDriver
  361. url: jdbc:oracle:thin:@192.168.20.55:1521:orcl
  362. username: system
  363. password: hxyk9573
  364. jpa:
  365. properties:
  366. hibernate:
  367. dialect: org.hibernate.dialect.Oracle10gDialect
  368. show_sql: true
  369. database: oracle
  370. elasticsearch:
  371. cluster-name: jkzl #集群名 默认elasticsearch
  372. cluster-nodes: 192.168.33.198:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  373. client-transport-sniff: false
  374. jest:
  375. uris: http://192.168.33.198:9200
  376. connection-timeout: 60000 # Connection timeout in milliseconds.
  377. multi-threaded: true # Enable connection requests from multiple execution threads.
  378. activemq:
  379. broker-url: tcp://172.26.0.116:61616
  380. user: admin
  381. password: admin
  382. redis:
  383. host: 192.168.33.198 # Redis server host.
  384. port: 6380 # Redis server port.
  385. password: Kb6wKDQP1W4
  386. fastDFS:
  387. fastdfs_file_url: http://192.168.33.198:8888/
  388. fast-dfs:
  389. tracker-server: 192.168.33.198:22122 #服务器地址
  390. wechat:
  391. id: 97ed8a0a-4f07-4b85-ab02-b716c611a464 # base库中,wx_wechat 的id字段
  392. # 短信验证码发送的客户端标识,居民端
  393. sms:
  394. clientId: EwC0iRSrcP
  395. myFamily:
  396. qrCodeFailurTime: 2
  397. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  398. demo:
  399. flag: true
  400. hospital:
  401. url: https://wx.xmzsh.com
  402. mqUser: JKZL
  403. mqPwd: 123456
  404. SourceSysCode: S60
  405. TargetSysCode: S01
  406. im:
  407. im_list_get: http://172.26.0.105:3000/
  408. data_base_name: im_internet_hospital
  409. # 上传文件临时路径配置
  410. FileTempPath:
  411. upload_temp_path : /var/local/temp
  412. image_path : /var/local/upload/images
  413. voice_path : /var/local/upload/voice
  414. chat_file_path : /var/local/upload/chat
  415. es:
  416. index:
  417. Statistics: hlw_quota_test
  418. type:
  419. Statistics: hlw_quota_test
  420. host: http://192.168.33.198:9200
  421. tHost: 192.168.33.198:9300
  422. clusterName: jkzl
  423. securityUser: lion:jkzlehr
  424. #是否开启i健康接口 0关闭,1开启
  425. testPattern:
  426. sign: 0
  427. wlyy:
  428. url: http://www.xmtyw.cn/wlyytest/
  429. ##==眼科医院 数据库end=======================================================================
  430. ---
  431. ##==心脏中心 ===============================================================================
  432. spring:
  433. profiles: xzprod
  434. datasource:
  435. driver-class-name: com.mysql.jdbc.Driver
  436. url: jdbc:mysql://192.168.103.155:7306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  437. username: jzkl
  438. password: jzkl@2020
  439. elasticsearch:
  440. cluster-name: jkzl #集群名 默认elasticsearch
  441. cluster-nodes: 192.168.103.153:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  442. client-transport-sniff: false
  443. jest:
  444. uris: http://192.168.103.153:9300
  445. connection-timeout: 60000 # Connection timeout in milliseconds.
  446. multi-threaded: true # Enable connection requests from multiple execution threads.
  447. activemq:
  448. broker-url: tcp://59.61.92.90:9103
  449. user: jkzl
  450. password: jkzlehr
  451. redis:
  452. host: 192.168.103.158 # Redis server host.
  453. port: 6380 # Redis server port.
  454. password: q4YaQemf
  455. fastDFS:
  456. fastdfs_file_url: http://192.168.103.159:8888/
  457. fast-dfs:
  458. tracker-server: 192.168.103.159:22122 #服务器地址
  459. wechat:
  460. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  461. # 短信验证码发送的客户端标识,居民端
  462. sms:
  463. clientId: EwC0iRSrcP #todo 待配置
  464. myFamily:
  465. qrCodeFailurTime: 2
  466. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  467. demo:
  468. flag: false
  469. hospital:
  470. url: https://wx.xmzsh.com
  471. mqUser: JKZL
  472. mqPwd: 123456
  473. SourceSysCode: S60
  474. TargetSysCode: S01
  475. im:
  476. im_list_get: http://172.16.1.42:3000/
  477. data_base_name: im
  478. # 上传文件临时路径配置
  479. FileTempPath:
  480. upload_temp_path : /var/local/temp
  481. image_path : /var/local/upload/images
  482. voice_path : /var/local/upload/voice
  483. chat_file_path : /var/local/upload/chat
  484. es:
  485. index:
  486. Statistics: hlw_quota_test
  487. type:
  488. Statistics: hlw_quota_test
  489. host: http://172.26.0.112:9200
  490. tHost: 172.26.0.112:9300
  491. clusterName: jkzl
  492. securityUser: lion:jkzlehr
  493. #是否开启i健康接口 0关闭,1开启
  494. testPattern:
  495. sign: 0
  496. wlyy:
  497. url: http://www.xmtyw.cn/wlyytest/
  498. ---
  499. ##==厦门卫计委 ===============================================================================
  500. spring:
  501. profiles: xmjwprod
  502. datasource:
  503. driver-class-name: com.mysql.jdbc.Driver
  504. url: jdbc:mysql://59.61.92.90:9409/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  505. username: wlyy
  506. password: qY#j2n5O
  507. elasticsearch:
  508. cluster-name: jkzl #集群名 默认elasticsearch
  509. cluster-nodes: 10.95.22.155:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  510. client-transport-sniff: false
  511. jest:
  512. uris: http://10.95.22.155:9300
  513. connection-timeout: 60000 # Connection timeout in milliseconds.
  514. multi-threaded: true # Enable connection requests from multiple execution threads.
  515. activemq:
  516. broker-url: tcp://59.61.92.90:9103
  517. user: jkzl
  518. password: jkzlehr
  519. redis:
  520. host: 59.61.92.90 # Redis server host.
  521. port: 9206 # Redis server port.
  522. password: jkzlehr
  523. fastDFS:
  524. fastdfs_file_url: http://192.168.103.159:8888/
  525. fast-dfs:
  526. tracker-server: 192.168.103.159:22122 #服务器地址
  527. wechat:
  528. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  529. # 短信验证码发送的客户端标识,居民端
  530. sms:
  531. clientId: EwC0iRSrcP #todo 待配置
  532. myFamily:
  533. qrCodeFailurTime: 2
  534. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  535. demo:
  536. flag: false
  537. hospital:
  538. url: https://wx.xmzsh.com
  539. mqUser: JKZL
  540. mqPwd: 123456
  541. SourceSysCode: S60
  542. TargetSysCode: S01
  543. im:
  544. im_list_get: http://27.150.190.148:16000/
  545. data_base_name: im
  546. # 上传文件临时路径配置
  547. FileTempPath:
  548. upload_temp_path : /var/local/temp
  549. image_path : /var/local/upload/images
  550. voice_path : /var/local/upload/voice
  551. chat_file_path : /var/local/upload/chat
  552. es:
  553. index:
  554. Statistics: hlw_quota_test
  555. type:
  556. Statistics: hlw_quota_test
  557. host: http://59.61.92.90:9065
  558. tHost: 59.61.92.90:9066
  559. clusterName: jkzl
  560. securityUser: lion:jkzlehr
  561. #是否开启i健康接口 0关闭,1开启
  562. testPattern:
  563. sign: 1
  564. wlyy:
  565. url: http://www.xmtyw.cn/wlyy/