123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- server:
- contextPath: /iot
- port: 9099
- sessionTimeout: 30000000
- spring:
- redis:
- database: 0 # Database index used by the connection factory.
- port: 6379 # Redis server port.
- password: # Login password of the redis server.
- timeout: 0 # Connection timeout in milliseconds.
- #sentinel:
- # master: # Name of Redis server.
- # nodes: # Comma-separated list of host:port pairs.
- pool:
- max-active: 8 # Max number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.
- max-idle: 8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
- max-wait: -1 # Maximum amount of time (in milliseconds) a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.
- min-idle: 1 # Target for the minimum number of idle connections to maintain in the pool. This setting only has an effect if it is positive.
- application:
- name: app-emergency-server
- message: EHR Emergency Server
- permissions:
- info: admin
- app:
- clientId: 3CDhsgepr4
- baseClientId: Qz2yA1MOD0 # 【物联网】应用
- fast-dfs:
- tracker-server: 172.19.103.54:22122 #服务器地址
- connect-timeout: 2 #链接超时时间
- network-timeout: 30
- charset: ISO8859-1 #编码
- http:
- tracker-http-port: 80
- anti-steal-token: no
- secret-key: FastDFS1234567890
- pool: #连接池大小
- init-size: 5
- max-size: 20
- wait-time: 500
- ---
- spring:
- profiles: dev
- loginVaild: true
- redis:
- host: 172.19.103.47 # Redis server host.
- port: 6379
- password: redis!@456
- app:
- oauth2InnerUrl: http://172.19.103.44:10260/
- oauth2OuterUrl: http://27.154.233.186:10260/ #上饶-授权外网映射
- service-gateway:
- iotUrl: http://192.168.131.24:8088/svr-iot/
- profileInnerUrl: http://172.19.103.48:10000/api/v1.0/admin
- profileOuterUrl: http://27.154.233.186:10000/api/v1.0/admin
- portalInnerUrl: http://172.19.103.48:10280/api/v1.0/portal
- portalOuterUrl: http://27.154.233.186:10280/api/v1.0/portal
- fast-dfs:
- tracker-server: 172.19.103.54:22122
- public-server: http://172.19.103.54:80/
- logging:
- path: /data/logger
- file: app-emergency-server
- ---
- spring:
- profiles: test
- loginVaild: true
- redis:
- host: 172.19.103.47 # Redis server host.
- port: 6379
- password: redis!@456
- app:
- oauth2InnerUrl: http://172.19.103.73:10260/
- oauth2OuterUrl: http://27.154.233.186:10260/
- service-gateway:
- profileInnerUrl: http://172.19.103.73:10000/api/v1.0/admin
- profileOuterUrl: http://27.154.233.186:10000/api/v1.0/admin
- portalInnerUrl: http://172.19.103.73:10280/api/v1.0/portal
- portalOuterUrl: http://27.154.233.186:10280/api/v1.0/portal
- fast-dfs:
- tracker-server: 172.19.103.54:22122
- public-server: http://172.19.103.54:80/
- logging:
- path: /data/logger
- file: app-emergency-server
- ---
- spring:
- profiles: prod
- loginVaild: true
- redis:
- host: 172.19.103.47 # Redis server host.
- port: 6379
- password: redis!@456
- app:
- oauth2InnerUrl: http://172.19.103.73:10260/
- oauth2OuterUrl: http://27.154.233.186:10260/
- service-gateway:
- profileInnerUrl: http://172.19.103.73:10000/api/v1.0/admin
- profileOuterUrl: http://27.154.233.186:10000/api/v1.0/admin
- portalInnerUrl: http://172.19.103.73:10280/api/v1.0/portal
- portalOuterUrl: http://27.154.233.186:10280/api/v1.0/portal
- fast-dfs:
- tracker-server: 11.1.2.9:22122
- accessUrl: http://11.1.2.9
- logging:
- path: /data/logger
- file: app-emergency-server
|