liusuyi
2024-10-10 38f29e38fcc668171dc05c53d40a36b895c86102
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# 生产环境配置
server:
  # 服务器的HTTP端口,默认为8080
  port: 8080
  ssl:
    # 开启HTTPS,并配置自签名证书
    enabled: false
    #秘钥库文件名称,即上面生成的自签名证书
    key-store: classpath:keystore
    # 生成秘钥库文件的密码
    key-store-password: 123456
    # 秘钥库类型(JKS为jdk的keytool工具默认生成的秘钥库类型)
    key-store-type: JKS
    # 秘钥别名
    key-alias: tomcat
  servlet:
    # 应用的访问路径
    context-path: /
  tomcat:
    # tomcat的URI编码
    uri-encoding: UTF-8
    # 连接数满后的排队数,默认为100
    accept-count: 1000
    threads:
      # tomcat最大线程数,默认为200
      max: 800
      # Tomcat启动初始化的线程数,默认值10
      min-spare: 100
## knife4j配置
knife4j:
  # knife4j增强功能,开启后下面参数才生效
  enable: true
  #是否为生产模式 项目部属时为true 防止接口暴露
  production: false
  # 配置用户密码
  basic:
    enable: true
    username: admin
    password: ardkj12345
# 日志配置
logging:
  level:
    authorize: info
    minio: info
    hikSdk: info
    stealAlarm: info
    websocket: info
    patrolInspectionTask: info
    mqtt: info
    guideQueue: info
    rongCloud: info
    cmd: info
    uav: info
    sy: info
    msgListener: debug
# minio配置
minio:
  enabled: false
  endpoint: http://192.168.1.14:9001
  accessKey: admin
  secretKey: xzx12345
  path: G:/DATA
#流媒体转码服务器
mediamtx:
  enabled: false
  host: 192.168.1.14
#mqtt
mqtt:
  host: tcp://192.168.1.14:1883
  clientId: server14
  username: admin
  password: xzx12345
  topic: minioEvent,radar,stealelec,tube,camera,external,accessControl,apponekey,digitization3,radarForceGuide
  timeout: 100
  keepalive: 60
  enabled: true
#三一车辆开关
syCar:
  enabled: false
  userId: admin
  password: 654321
#无人机开关
uav:
  enabled: false