1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # 设置token生成秘钥与过期时间,此处单位为秒
- jwt.secret=aaa
- jwt.expiration=86400
- # 默认应用id,0表示不指定,其他为指定
- default.appId=0
- # 设置redis存储登录用户信息的过期时间,此处单位为秒
- redis.user.expiration=90000
- # 设定特殊用户redis及token信息不过期,一次登录永久有效,值为userId,多个逗号隔开
- redis.user.notexpired.userIds=1,2,3,4
- # 是否通过ping来检测设备在线
- checkDeviceIpByPing=false
- # 定时任务执行,指定服务名称、ip及指定端口(例子:facerec-system_localhost_8770),防止多次执行;多个逗号隔开
- system.task.appNameAndIpAndPort=facerec-system_localhost_8771,facerec-device_localhost_8751,facerec-netty_localhost_8741,facerec-nginxflv_localhost_8731,facerec-station-device_localhost_8651
- # 创建下载文件时的临时保存路径
- system.dowload.path=/home/yuqing/download
- # 历史回放视频下载文件时保存路径
- system.dowload.replay.path=/home/yuqing/video
- # 海康摄像机设备sdk需加载模型路径
- system.device.general.models.path=E:\\hksdk
- system.device.general.models.linux.path=/home/project/deviceSDKdll/lib
- # 驱鸟检测算法sdk需加载模型路径
- system.bird.detector.models.path=E:\\birdSDK
- system.bird.detector.models.linux.path=/home/project/birdSDK
- # 设置fastdfs对象参数
- fastdfs.fileAccessUrl = http://47.112.106.146:8009
- fastdfs.filePath = /home/yuqing/fastdfs/data
- fastdfs.connect_timeout = 30
- fastdfs.network_timeout = 60
- fastdfs.charset = utf-8
- fastdfs.http_tracker_http_port = 8009
- fastdfs.http_anti_steal_token = no
- fastdfs.http_secret_key = FastDFS1234567890
- fastdfs.tracker_server = 47.112.106.146:22122
- # 视频播放转发地址、实时视频转发地址
- play.config.realPlayAddress=rtmp://localhost:1935/live/
- play.config.liveRealPlayAddress=http://localhost/live?port=1935&app=live&stream=
|