| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #okhttp 配置
- ok-http:
- connect-timeout-ms: 500
- keep-alive-duration-sec: 5000
- max-idle-connections: 100
- read-timeout-ms: 500
- write-timeout-ms: 500
- #远程请求地址配置
- remote:
- protocol: http
- ip_addr: 192.168.1.88
- port: 17808
- operation:
- login_url: /api/users/login #登录
- get_device: /api/devices #获取设备列表
- set_device: /api/sendtodevice #设置设备
- tts_ip: 192.168.1.88
- tts_port: 10008
- spring:
- redis:
- host: 192.168.1.43
- port: 16379
- database: 2
- password: 2ask8to9
- jedis:
- pool:
- max-active: 8
- max-wait: -1
- max-idle: 500
- min-idle: 1
- timeout: 18000
- lettuce:
- shutdown-timeout: 0
- #ip喇叭控制端口
- speaker:
- port: 8888
- isOnline: 0 #1表示公网部署,0表示局域网部署
|