refactor: 添加修改配置项
This commit is contained in:
@@ -1,5 +1,65 @@
|
|||||||
blog.easyDeploy.file.qiniu.accessKey=
|
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
|
||||||
blog.easyDeploy.file.qiniu.secretKey=
|
spring.datasource.url=jdbc:h2:~/blog/db
|
||||||
blog.easyDeploy.file.qiniu.bucket=
|
spring.datasource.driver-class-name=org.h2.Driver
|
||||||
|
spring.datasource.username=sa
|
||||||
|
spring.datasource.password=sa
|
||||||
|
|
||||||
|
spring.datasource.platform=h2
|
||||||
|
spring.datasource.sql-script-encoding=utf-8
|
||||||
|
spring.datasource.initialization-mode=never
|
||||||
|
spring.datasource.schema=classpath:sql/schema_h2.sql
|
||||||
|
spring.datasource.data=classpath:sql/data.sql
|
||||||
|
|
||||||
|
spring.h2.console.path=/h2-console
|
||||||
|
spring.h2.console.enabled=true
|
||||||
|
|
||||||
|
# 生成JWT时候的密钥
|
||||||
|
jwt.secret=11111222223333444455556667778888
|
||||||
|
# sitemap 存放地址
|
||||||
|
sitemap.path=/www/wwwroot/celess.cn/sitemap.xml
|
||||||
|
|
||||||
|
|
||||||
|
############### email ##############
|
||||||
|
spring.mail.host=smtp.163.com
|
||||||
|
spring.mail.username=
|
||||||
|
spring.mail.password=
|
||||||
|
spring.mail.properties.mail.smtp.auth=true
|
||||||
|
spring.mail.properties.mail.smtp.starttls.enable=true
|
||||||
|
spring.mail.properties.mail.smtp.starttls.required=true
|
||||||
|
spring.mail.default-encoding=UTF-8
|
||||||
|
spring.mail.port=465
|
||||||
|
spring.mail.properties.mail.smtp.socketFactory.port=465
|
||||||
|
spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
|
||||||
|
spring.mail.properties.mail.smtp.socketFactory.fallback=false
|
||||||
|
|
||||||
|
################## mybatis ##################
|
||||||
|
mybatis.mapper-locations=classpath:mapper/*.xml
|
||||||
|
mybatis.type-aliases-package=cn.celess.blog.entity
|
||||||
|
|
||||||
|
|
||||||
|
pagehelper.helper-dialect=mysql
|
||||||
|
pagehelper.reasonable=true
|
||||||
|
pagehelper.support-methods-arguments=true
|
||||||
|
pagehelper.params=count=countSql
|
||||||
|
|
||||||
|
############### redis ##############
|
||||||
|
# REDIS (RedisProperties)
|
||||||
|
# Redis数据库索引(默认为0)
|
||||||
|
spring.redis.database=1
|
||||||
|
# Redis服务器地址
|
||||||
|
spring.redis.host=127.0.0.1
|
||||||
|
# Redis服务器连接端口 解决端口冲突 防止使用本地的redis
|
||||||
|
spring.redis.port=6379
|
||||||
|
# Redis服务器连接密码(默认为空)
|
||||||
|
spring.redis.password=
|
||||||
|
# 连接池最大连接数(使用负值表示没有限制)
|
||||||
|
spring.redis.jedis.pool.max-active=-1
|
||||||
|
# 连接池最大阻塞等待时间(使用负值表示没有限制)
|
||||||
|
spring.redis.jedis.pool.max-wait=-1
|
||||||
|
# 连接池中的最大空闲连接
|
||||||
|
spring.redis.jedis.pool.max-idle=8
|
||||||
|
# 连接池中的最小空闲连接
|
||||||
|
spring.redis.jedis.pool.min-idle=0
|
||||||
|
# 连接超时时间(毫秒)
|
||||||
|
spring.redis.timeout=5000
|
||||||
|
|
||||||
blog.easyDeploy.file.local.dictoryPath=
|
|
||||||
@@ -62,12 +62,6 @@ spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFact
|
|||||||
spring.mail.properties.mail.smtp.socketFactory.fallback=false
|
spring.mail.properties.mail.smtp.socketFactory.fallback=false
|
||||||
|
|
||||||
|
|
||||||
#### 用于nginx的代理 获取真实ip
|
|
||||||
server.use-forward-headers = true
|
|
||||||
server.tomcat.remote-ip-header = X-Real-IP
|
|
||||||
server.tomcat.protocol-header = X-Forwarded-Proto
|
|
||||||
|
|
||||||
|
|
||||||
############### redis ##############
|
############### redis ##############
|
||||||
# REDIS (RedisProperties)
|
# REDIS (RedisProperties)
|
||||||
# Redis数据库索引(默认为0)
|
# Redis数据库索引(默认为0)
|
||||||
|
|||||||
@@ -50,13 +50,6 @@ pagehelper.support-methods-arguments=true
|
|||||||
pagehelper.params=count=countSql
|
pagehelper.params=count=countSql
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### 用于nginx的代理 获取真实ip
|
|
||||||
server.use-forward-headers = true
|
|
||||||
server.tomcat.remote-ip-header = X-Real-IP
|
|
||||||
server.tomcat.protocol-header = X-Forwarded-Proto
|
|
||||||
|
|
||||||
|
|
||||||
############### email ##############
|
############### email ##############
|
||||||
spring.mail.host=smtp.163.com
|
spring.mail.host=smtp.163.com
|
||||||
spring.mail.username=
|
spring.mail.username=
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
spring.profiles.active=easyDeploy
|
spring.profiles.active=easyDeploy
|
||||||
####七牛的配置
|
|
||||||
####cn.celess.blog.service.fileserviceimpl.QiniuFileServiceImpl
|
|
||||||
logging.level.cn.celess.blog=debug
|
logging.level.cn.celess.blog=debug
|
||||||
logging.level.cn.celess.blog.mapper=info
|
logging.level.cn.celess.blog.mapper=info
|
||||||
|
|
||||||
|
#### 用于nginx的代理 获取真实ip
|
||||||
|
server.use-forward-headers = true
|
||||||
|
server.tomcat.remote-ip-header = X-Real-IP
|
||||||
|
server.tomcat.protocol-header = X-Forwarded-Proto
|
||||||
|
|
||||||
## 修改openSource 添加-test 文件用于测试 -prod文件用于线上发布
|
## 修改openSource 添加-test 文件用于测试 -prod文件用于线上发布
|
||||||
Reference in New Issue
Block a user