郑州市第一人民医院

appsettings.Development.json 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "Cors": "",
  3. "Logging": {
  4. "IncludeScopes": false,
  5. "LogLevel": {
  6. "Default": "Debug",
  7. "System": "Error",
  8. "Microsoft": "Error",
  9. "Steeltoe": "Error"
  10. }
  11. },
  12. "Jwt": {
  13. "Issuer": "HySignToken",
  14. "Audience": "HyCallCenterApi",
  15. "SecretKey": "HYBambooJIe256sdkDfjiTSkjienTGjnVcu85114udfhbudgdkfUh"
  16. },
  17. "mzupload": {
  18. "url": "http://192.168.0.1:28000/fileserverapi/api/upload",
  19. "params": "uploadtype=excel",
  20. "mbname": "门诊患者.xlsx",
  21. "mbkeys": "患者编码,门诊就诊号,姓名,性别,出生日期,证件类型,身份证,联系电话,疾病名称,就诊科室,就诊时间",
  22. "dbkeys": "hzcode,mzjzcode,mzhzname,mzhzxb,mzhzbirthday,mzhzzjtype,mzhzsfzcode,mzhzsfzcode,mzhzphone,mzhzjbname,mzhzjzdeptname,mzhzjztime"
  23. },
  24. "MongoConnection": {
  25. //"ConnectionString": "mongodb://root:123456@192.168.5.44:27017",
  26. //"Database": "madrunfabricdb_base" //madrunfabricdb_base madrunfabricdb
  27. //"ConnectionString": "mongodb://root:123456@192.168.56.1:27017",//本机
  28. //"Database": "madrunfabricdb_base" //madrunfabricdb_base madrunfabricdb
  29. "ConnectionString": "mongodb://root:123456@192.168.1.26:27017", //本机
  30. "Database": "madrunfabricdb_base"
  31. },
  32. "allprojectrole": "YWFJL|YWJL|YWZJ|CJGL|XTWH", //查看所有项目
  33. "Redis": {
  34. "HostName": "192.168.5.44",
  35. "Port": "6379",
  36. "Password": "",
  37. "Defaultdatabase": "1",
  38. "InstanceName": "device"
  39. },
  40. "spring": {
  41. "application": {
  42. "name": "testusertypeapi"
  43. }
  44. },
  45. "eureka": {
  46. "client": {
  47. "serviceUrl": "http://192.168.5.46:28100/eureka/"
  48. //"shouldFetchRegistry": false
  49. },
  50. "instance": {
  51. "preferIpAddress": true,
  52. //服务过期时间配置,
  53. //超过这个时间没有接收到心跳EurekaServer就会将这个实例剔除 #注意,EurekaServer一定要设置eureka.server.eviction-interval-timer-in-ms否则这个配置无效,这个配置一般为服务刷新时间配置的三倍
  54. //默认90s 在删除实例之前,EurekaServer等待的时间,默认= 90秒
  55. "leaseExpirationDurationInSeconds": 15,
  56. //服务刷新时间配置,每隔这个时间会主动心跳一次
  57. //默认30s 客户端需要发送心跳的频率,默认值= 30s
  58. "leaseRenewalIntervalInSeconds": 5,
  59. "statusPageUrlPath": "/api/info",
  60. "port": 28340
  61. // Remove comments to enable SSL requests
  62. // More changes in Program.cs are required if using direct C2C communications
  63. //,"securePortEnabled": true
  64. }
  65. }
  66. }