svr-internet-hospital.yml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  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. pwflag: 1 # 1需要密码,0不需要密码
  134. index:
  135. Statistics: hlw_quota_test
  136. type:
  137. Statistics: hlw_quota_test
  138. host: http://172.26.0.112:9200
  139. tHost: 172.26.0.112:9300
  140. clusterName: jkzl
  141. securityUser: lion:jkzlehr
  142. #是否开启i健康接口 0关闭,1开启
  143. testPattern:
  144. sign: 0
  145. wlyy:
  146. url: http://www.xmtyw.cn/wlyytest/
  147. ---
  148. spring:
  149. profiles: jwtest
  150. datasource:
  151. driver-class-name: com.mysql.jdbc.Driver
  152. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  153. username: ssgg
  154. password: ssgg@jkzl2019
  155. elasticsearch:
  156. cluster-name: jkzl #集群名 默认elasticsearch
  157. cluster-nodes: 192.0.33.26:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  158. client-transport-sniff: false
  159. jest:
  160. uris: http://192.0.33.26:9300
  161. connection-timeout: 60000 # Connection timeout in milliseconds.
  162. multi-threaded: true # Enable connection requests from multiple execution threads.
  163. activemq:
  164. broker-url: tcp://59.61.92.90:9103
  165. user: jkzl
  166. password: jkzlehr
  167. redis:
  168. host: 192.0.33.26 # Redis server host.
  169. port: 6390 # Redis server port.
  170. password: Kb6wKDQP1W4
  171. fastDFS:
  172. fastdfs_file_url: http://192.0.33.26:8888/
  173. fast-dfs:
  174. tracker-server: 192.0.33.26:22122 #服务器地址
  175. wechat:
  176. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  177. # 短信验证码发送的客户端标识,居民端
  178. sms:
  179. clientId: EwC0iRSrcP #todo 待配置
  180. myFamily:
  181. qrCodeFailurTime: 2
  182. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  183. demo:
  184. flag: false
  185. hospital:
  186. url: https://wx.xmzsh.com
  187. mqUser: JKZL
  188. mqPwd: 123456
  189. SourceSysCode: S60
  190. TargetSysCode: S01
  191. im:
  192. im_list_get: http://192.0.33.103:3000/
  193. data_base_name: im
  194. # 上传文件临时路径配置
  195. FileTempPath:
  196. upload_temp_path : /var/local/temp
  197. image_path : /var/local/upload/images
  198. voice_path : /var/local/upload/voice
  199. chat_file_path : /var/local/upload/chat
  200. es:
  201. pwflag: 1 # 1需要密码,0不需要密码
  202. index:
  203. Statistics: hlw_quota_test
  204. type:
  205. Statistics: hlw_quota_test
  206. host: http://172.26.0.112:9200
  207. tHost: 172.26.0.112:9300
  208. clusterName: jkzl
  209. securityUser: lion:jkzlehr
  210. #是否开启i健康接口 0关闭,1开启
  211. testPattern:
  212. sign: 0
  213. wlyy:
  214. url: http://www.xmtyw.cn/wlyytest/
  215. ---
  216. spring:
  217. profiles: jwprod
  218. datasource:
  219. driver-class-name: com.mysql.jdbc.Driver
  220. url: jdbc:mysql://192.0.33.27:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  221. username: im
  222. password: 2oEq3Kf7
  223. elasticsearch:
  224. cluster-name: jkzl #集群名 默认elasticsearch
  225. cluster-nodes: 192.0.33.26:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  226. client-transport-sniff: false
  227. jest:
  228. uris: http://192.0.33.26:9300
  229. connection-timeout: 60000 # Connection timeout in milliseconds.
  230. multi-threaded: true # Enable connection requests from multiple execution threads.
  231. activemq:
  232. broker-url: tcp://59.61.92.90:9103
  233. user: jkzl
  234. password: jkzlehr
  235. redis:
  236. host: 192.0.33.26 # Redis server host.
  237. port: 6390 # Redis server port.
  238. password: Kb6wKDQP1W4
  239. fastDFS:
  240. fastdfs_file_url: http://192.0.33.26:8888/
  241. fast-dfs:
  242. tracker-server: 192.0.33.26:22122 #服务器地址
  243. wechat:
  244. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  245. # 短信验证码发送的客户端标识,居民端
  246. sms:
  247. clientId: EwC0iRSrcP #todo 待配置
  248. myFamily:
  249. qrCodeFailurTime: 2
  250. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  251. demo:
  252. flag: false
  253. hospital:
  254. url: https://wx.xmzsh.com
  255. mqUser: JKZL
  256. mqPwd: 123456
  257. SourceSysCode: S60
  258. TargetSysCode: S01
  259. im:
  260. im_list_get: http://172.16.1.42:3000/
  261. data_base_name: im
  262. # 上传文件临时路径配置
  263. FileTempPath:
  264. upload_temp_path : /var/local/temp
  265. image_path : /var/local/upload/images
  266. voice_path : /var/local/upload/voice
  267. chat_file_path : /var/local/upload/chat
  268. es:
  269. pwflag: 1 # 1需要密码,0不需要密码
  270. index:
  271. Statistics: hlw_quota_test
  272. type:
  273. Statistics: hlw_quota_test
  274. host: http://172.26.0.112:9200
  275. tHost: 172.26.0.112:9300
  276. clusterName: jkzl
  277. securityUser: lion:jkzlehr
  278. #是否开启i健康接口 0关闭,1开启
  279. testPattern:
  280. sign: 0
  281. wlyy:
  282. url: http://www.xmtyw.cn/wlyytest/
  283. ---
  284. spring:
  285. profiles: jwOracleTest
  286. datasource:
  287. driver-class-name: oracle.jdbc.driver.OracleDriver
  288. url: jdbc:oracle:thin:@172.26.0.141:1521:helowin
  289. username: normal
  290. password: normal
  291. jpa:
  292. properties:
  293. hibernate:
  294. dialect: org.hibernate.dialect.Oracle10gDialect
  295. show_sql: true
  296. database: oracle
  297. # url: jdbc:mysql://172.19.103.77/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  298. # username: root
  299. # password: 123456
  300. elasticsearch:
  301. cluster-name: jkzl #集群名 默认elasticsearch
  302. cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  303. client-transport-sniff: false
  304. jest:
  305. uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  306. connection-timeout: 60000 # Connection timeout in milliseconds.
  307. multi-threaded: true # Enable connection requests from multiple execution threads.
  308. activemq:
  309. broker-url: tcp://172.26.0.116:61616
  310. user: admin
  311. password: admin
  312. redis:
  313. host: 172.26.0.253 # Redis server host.
  314. port: 6379 # Redis server port.
  315. fastDFS:
  316. fastdfs_file_url: http://172.26.0.110:8888/
  317. fast-dfs:
  318. tracker-server: 172.26.0.110:22122 #服务器地址
  319. wechat:
  320. id: 97ed8a0a-4f07-4b85-ab02-b716c611a464 # base库中,wx_wechat 的id字段
  321. # 短信验证码发送的客户端标识,居民端
  322. sms:
  323. clientId: EwC0iRSrcP
  324. myFamily:
  325. qrCodeFailurTime: 2
  326. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  327. demo:
  328. flag: true
  329. hospital:
  330. url: https://wx.xmzsh.com
  331. mqUser: JKZL
  332. mqPwd: 123456
  333. SourceSysCode: S60
  334. TargetSysCode: S01
  335. im:
  336. im_list_get: http://172.26.0.105:3000/
  337. data_base_name: im_internet_hospital
  338. # 上传文件临时路径配置
  339. FileTempPath:
  340. upload_temp_path : /var/local/temp
  341. image_path : /var/local/upload/images
  342. voice_path : /var/local/upload/voice
  343. chat_file_path : /var/local/upload/chat
  344. es:
  345. pwflag: 1 # 1需要密码,0不需要密码
  346. index:
  347. Statistics: hlw_quota_test
  348. type:
  349. Statistics: hlw_quota_test
  350. host: http://172.26.0.112:9200
  351. tHost: 172.26.0.112:9300
  352. clusterName: jkzl
  353. securityUser: lion:jkzlehr
  354. #是否开启i健康接口 0关闭,1开启
  355. testPattern:
  356. sign: 0
  357. wlyy:
  358. url: http://www.xmtyw.cn/wlyytest/
  359. ---
  360. spring:
  361. profiles: jwOracleProd
  362. ## ==眼科医院 数据库========================================================================
  363. datasource:
  364. driver-class-name: oracle.jdbc.driver.OracleDriver
  365. url: jdbc:oracle:thin:@10.10.10.16:1521:rac
  366. username: HLWYY
  367. password: Xmykzxhlwyy963
  368. jpa:
  369. properties:
  370. hibernate:
  371. dialect: org.hibernate.dialect.Oracle10gDialect
  372. show_sql: true
  373. database: oracle
  374. elasticsearch:
  375. cluster-name: jkzl #集群名 默认elasticsearch
  376. cluster-nodes: 192.168.33.198:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  377. client-transport-sniff: false
  378. jest:
  379. uris: http://192.168.33.198:9200
  380. connection-timeout: 60000 # Connection timeout in milliseconds.
  381. multi-threaded: true # Enable connection requests from multiple execution threads.
  382. activemq:
  383. broker-url: tcp://172.26.0.116:61616
  384. user: admin
  385. password: admin
  386. redis:
  387. host: 192.168.33.198 # Redis server host.
  388. port: 6380 # Redis server port.
  389. password: Kb6wKDQP1W4
  390. fastDFS:
  391. fastdfs_file_url: http://192.168.33.198:8888/
  392. fast-dfs:
  393. tracker-server: 192.168.33.198:22122 #服务器地址
  394. wechat:
  395. id: 97ed8a0a-4f07-4b85-ab02-b716c611a464 # base库中,wx_wechat 的id字段
  396. # 短信验证码发送的客户端标识,居民端
  397. sms:
  398. clientId: EwC0iRSrcP
  399. myFamily:
  400. qrCodeFailurTime: 2
  401. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  402. demo:
  403. flag: true
  404. hospital:
  405. url: https://wx.xmzsh.com
  406. mqUser: JKZL
  407. mqPwd: 123456
  408. SourceSysCode: S60
  409. TargetSysCode: S01
  410. im:
  411. im_list_get: http://172.26.0.105:3000/
  412. data_base_name: im_internet_hospital
  413. # 上传文件临时路径配置
  414. FileTempPath:
  415. upload_temp_path : /var/local/temp
  416. image_path : /var/local/upload/images
  417. voice_path : /var/local/upload/voice
  418. chat_file_path : /var/local/upload/chat
  419. es:
  420. pwflag: 1 # 1需要密码,0不需要密码
  421. index:
  422. Statistics: hlw_quota_test
  423. type:
  424. Statistics: hlw_quota_test
  425. host: http://192.168.33.198:9200
  426. tHost: 192.168.33.198:9300
  427. clusterName: jkzl
  428. securityUser: lion:jkzlehr
  429. #是否开启i健康接口 0关闭,1开启
  430. testPattern:
  431. sign: 0
  432. wlyy:
  433. url: http://www.xmtyw.cn/wlyytest/
  434. ##==眼科医院 数据库end=======================================================================
  435. ---
  436. ##==心脏中心 ===============================================================================
  437. spring:
  438. profiles: xzprod
  439. datasource:
  440. driver-class-name: com.mysql.jdbc.Driver
  441. url: jdbc:mysql://192.168.103.155:7306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  442. username: jzkl
  443. password: jzkl@2020
  444. elasticsearch:
  445. cluster-name: jkzl #集群名 默认elasticsearch
  446. cluster-nodes: 192.168.103.153:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  447. client-transport-sniff: false
  448. jest:
  449. uris: http://192.168.103.153:9300
  450. connection-timeout: 60000 # Connection timeout in milliseconds.
  451. multi-threaded: true # Enable connection requests from multiple execution threads.
  452. activemq:
  453. broker-url: tcp://59.61.92.90:9103
  454. user: jkzl
  455. password: jkzlehr
  456. redis:
  457. host: 192.168.103.158 # Redis server host.
  458. port: 6380 # Redis server port.
  459. password: q4YaQemf
  460. fastDFS:
  461. fastdfs_file_url: http://192.168.103.159:8888/
  462. fast-dfs:
  463. tracker-server: 192.168.103.159:22122 #服务器地址
  464. wechat:
  465. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  466. # 短信验证码发送的客户端标识,居民端
  467. sms:
  468. clientId: EwC0iRSrcP #todo 待配置
  469. myFamily:
  470. qrCodeFailurTime: 2
  471. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  472. demo:
  473. flag: false
  474. hospital:
  475. url: https://wx.xmzsh.com
  476. mqUser: JKZL
  477. mqPwd: 123456
  478. SourceSysCode: S60
  479. TargetSysCode: S01
  480. im:
  481. im_list_get: http://172.16.1.42:3000/
  482. data_base_name: im
  483. # 上传文件临时路径配置
  484. FileTempPath:
  485. upload_temp_path : /var/local/temp
  486. image_path : /var/local/upload/images
  487. voice_path : /var/local/upload/voice
  488. chat_file_path : /var/local/upload/chat
  489. es:
  490. pwflag: 1 # 1需要密码,0不需要密码
  491. index:
  492. Statistics: hlw_quota_test
  493. type:
  494. Statistics: hlw_quota_test
  495. host: http://172.26.0.112:9200
  496. tHost: 172.26.0.112:9300
  497. clusterName: jkzl
  498. securityUser: lion:jkzlehr
  499. #是否开启i健康接口 0关闭,1开启
  500. testPattern:
  501. sign: 0
  502. wlyy:
  503. url: http://www.xmtyw.cn/wlyytest/
  504. ---
  505. ##==厦门卫计委 ===============================================================================
  506. spring:
  507. profiles: xmjwprod
  508. datasource:
  509. driver-class-name: com.mysql.jdbc.Driver
  510. url: jdbc:mysql://59.61.92.90:9409/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  511. username: wlyy
  512. password: qY#j2n5O
  513. # elasticsearch:
  514. # cluster-name: jkzl #集群名 默认elasticsearch
  515. # cluster-nodes: 59.61.92.90:9208 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  516. # client-transport-sniff: false
  517. # jest:
  518. # uris: http://59.61.92.90:9209
  519. # connection-timeout: 60000 # Connection timeout in milliseconds.
  520. # multi-threaded: true # Enable connection requests from multiple execution threads.
  521. activemq:
  522. broker-url: tcp://59.61.92.90:9103
  523. user: jkzl
  524. password: jkzlehr
  525. redis:
  526. host: 59.61.92.90 # Redis server host.
  527. port: 9206 # Redis server port.
  528. password: jkzlehr
  529. fastDFS:
  530. fastdfs_file_url: http://192.168.103.159:8888/
  531. fast-dfs:
  532. tracker-server: 192.168.103.159:22122 #服务器地址
  533. wechat:
  534. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  535. # 短信验证码发送的客户端标识,居民端
  536. sms:
  537. clientId: EwC0iRSrcP #todo 待配置
  538. myFamily:
  539. qrCodeFailurTime: 2
  540. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  541. demo:
  542. flag: false
  543. hospital:
  544. url: https://wx.xmzsh.com
  545. mqUser: JKZL
  546. mqPwd: 123456
  547. SourceSysCode: S60
  548. TargetSysCode: S01
  549. im:
  550. im_list_get: http://27.150.190.148:16000/
  551. data_base_name: im
  552. # 上传文件临时路径配置
  553. FileTempPath:
  554. upload_temp_path : /var/local/temp
  555. image_path : /var/local/upload/images
  556. voice_path : /var/local/upload/voice
  557. chat_file_path : /var/local/upload/chat
  558. es:
  559. pwflag: 0 # 1需要密码,0不需要密码
  560. index:
  561. Statistics: hlw_quota_test
  562. type:
  563. Statistics: hlw_quota_test
  564. host: http://59.61.92.90:9208
  565. tHost: 59.61.92.90:9209
  566. clusterName: jkzl
  567. securityUser: lion:jkzlehr
  568. #是否开启i健康接口 0关闭,1开启
  569. testPattern:
  570. sign: 1
  571. wlyy:
  572. url: http://www.xmtyw.cn/wlyy/