|
@@ -62,3 +62,34 @@ spring.jackson.parser.allow-single-quotes=true
|
|
# gzip
|
|
# gzip
|
|
server.compression.enabled=true
|
|
server.compression.enabled=true
|
|
server.compression.mime-types=application/javascript,text/css,application/json,application/xml,text/html,text/xml,text/plain
|
|
server.compression.mime-types=application/javascript,text/css,application/json,application/xml,text/html,text/xml,text/plain
|
|
|
|
+
|
|
|
|
+# cache
|
|
|
|
+spring.redis.database=0
|
|
|
|
+spring.redis.host=120.55.70.156
|
|
|
|
+spring.redis.port=6379
|
|
|
|
+spring.redis.password=123456
|
|
|
|
+spring.redis.timeout=10000
|
|
|
|
+spring.redis.jedis.pool.max-active=1000
|
|
|
|
+spring.redis.jedis.pool.max-idle=300
|
|
|
|
+spring.redis.jedis.pool.min-idle=5
|
|
|
|
+spring.redis.jedis.pool.max-wait=1000
|
|
|
|
+
|
|
|
|
+# token
|
|
|
|
+token.header: Authorization
|
|
|
|
+token.secret: abcdefghijklmnopqrstuvwxyz
|
|
|
|
+token.expireTime: 30
|
|
|
|
+
|
|
|
|
+# xss
|
|
|
|
+xss.enabled: true
|
|
|
|
+xss.excludes: /system/notice
|
|
|
|
+xss.urlPatterns: /system/*,/monitor/*,/tool/*
|
|
|
|
+
|
|
|
|
+# project
|
|
|
|
+ruoyi.name: RuoYi
|
|
|
|
+ruoyi.version: 3.6.0
|
|
|
|
+ruoyi.copyrightYear: 2021
|
|
|
|
+ruoyi.demoEnabled: true
|
|
|
|
+ruoyi.addressEnabled: false
|
|
|
|
+ruoyi.captchaType: math
|
|
|
|
+
|
|
|
|
+
|