|
@@ -1,4 +1,6 @@
|
|
|
---- # 数据源配置
|
|
|
+server:
|
|
|
+ video_stable_url: http://localhost:11001/video_stable
|
|
|
+# 数据源配置
|
|
|
spring:
|
|
|
datasource:
|
|
|
type: com.zaxxer.hikari.HikariDataSource
|
|
@@ -179,3 +181,16 @@ sa-token:
|
|
|
# jwt秘钥
|
|
|
jwt-secret-key: abcdefghijklmnopqrstuvwxyz
|
|
|
is-print: off #关闭控制台banner
|
|
|
+
|
|
|
+
|
|
|
+captcha:
|
|
|
+ enable: true
|
|
|
+ # 页面 <参数设置> 可开启关闭 验证码校验
|
|
|
+ # 验证码类型 math 数组计算 char 字符验证
|
|
|
+ type: MATH
|
|
|
+ # line 线段干扰 circle 圆圈干扰 shear 扭曲干扰
|
|
|
+ category: CIRCLE
|
|
|
+ # 数字验证码位数
|
|
|
+ numberLength: 1
|
|
|
+ # 字符验证码长度
|
|
|
+ charLength: 4
|