chore(config): 添加生产环境配置文件
- 新增 application-paopao.yml 文件,包含数据源、Redis、日志、SocketIO、Knife4j、 框架配置及生产环境证书配置 - 新增 application-vpc.yml 文件,包含数据源、Redis、日志、SocketIO、Knife4j、 框架配置及生产环境证书配置 - 配置数据库连接、阿里云OSS存储相关信息及证书挂载路径 - 设置日志等级和文件名 - 配置 SocketIO 服务器地址和 Knife4j 增强功能及生产环境屏蔽选项
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
# 生产环境配置
|
||||
|
||||
# 数据源配置
|
||||
spring:
|
||||
datasource:
|
||||
url: jdbc:mysql://1Panel-mysql-HZz5:3306/gxwebsoft_core?useSSL=false&serverTimezone=UTC
|
||||
username: gxwebsoft_core
|
||||
password: jdj7HYEdYHnYEFBy
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
type: com.alibaba.druid.pool.DruidDataSource
|
||||
redis:
|
||||
database: 0
|
||||
host: 1Panel-redis-5odv
|
||||
port: 6379
|
||||
password: redis_Sr8d87
|
||||
|
||||
# 日志配置
|
||||
logging:
|
||||
file:
|
||||
name: websoft-core.log
|
||||
level:
|
||||
root: WARN
|
||||
com.gxwebsoft: ERROR
|
||||
com.baomidou.mybatisplus: ERROR
|
||||
|
||||
socketio:
|
||||
host: 0.0.0.0 #IP地址
|
||||
|
||||
knife4j:
|
||||
# 开启knife4j增强
|
||||
enable: true
|
||||
# 开启生产环境屏蔽,一定要先开启knife4j增强才会生效
|
||||
production: false
|
||||
|
||||
# 框架配置
|
||||
config:
|
||||
# 生产环境接口
|
||||
server-url: https://paopao-server.websoft.top/api
|
||||
upload-path: /www/wwwroot/file.ws
|
||||
|
||||
# 阿里云OSS云存储
|
||||
endpoint: https://oss-cn-shenzhen.aliyuncs.com
|
||||
accessKeyId: LTAI4GKGZ9Z2Z8JZ77c3GNZP
|
||||
accessKeySecret: BiDkpS7UXj72HWwDWaFZxiXjNFBNCM
|
||||
bucketName: oss-gxwebsoft
|
||||
bucketDomain: https://oss.wsdns.cn
|
||||
aliyunDomain: https://oss-gxwebsoft.oss-cn-shenzhen.aliyuncs.com
|
||||
|
||||
# 生产环境证书配置
|
||||
certificate:
|
||||
# 生产环境使用挂载卷模式
|
||||
load-mode: VOLUME
|
||||
cert-root-path: /app/certs
|
||||
@@ -0,0 +1,53 @@
|
||||
# 生产环境配置
|
||||
|
||||
# 数据源配置
|
||||
spring:
|
||||
datasource:
|
||||
url: jdbc:mysql://1Panel-mysql-0NG1:3306/core?useSSL=false&serverTimezone=UTC
|
||||
username: core
|
||||
password: JRC4nTDbMGD7mBxa
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
type: com.alibaba.druid.pool.DruidDataSource
|
||||
redis:
|
||||
database: 0
|
||||
host: 1Panel-redis-gc1W
|
||||
port: 6379
|
||||
password: redis_Sr8d87
|
||||
|
||||
# 日志配置
|
||||
logging:
|
||||
file:
|
||||
name: websoft-core.log
|
||||
level:
|
||||
root: WARN
|
||||
com.gxwebsoft: ERROR
|
||||
com.baomidou.mybatisplus: ERROR
|
||||
|
||||
socketio:
|
||||
host: 0.0.0.0 #IP地址
|
||||
|
||||
knife4j:
|
||||
# 开启knife4j增强
|
||||
enable: true
|
||||
# 开启生产环境屏蔽,一定要先开启knife4j增强才会生效
|
||||
production: false
|
||||
|
||||
# 框架配置
|
||||
config:
|
||||
# 生产环境接口
|
||||
server-url: https://server.guiletao.com/api
|
||||
upload-path: /www/wwwroot/file.ws
|
||||
|
||||
# 阿里云OSS云存储
|
||||
endpoint: https://oss-cn-shenzhen.aliyuncs.com
|
||||
accessKeyId: LTAI4GKGZ9Z2Z8JZ77c3GNZP
|
||||
accessKeySecret: BiDkpS7UXj72HWwDWaFZxiXjNFBNCM
|
||||
bucketName: oss-gxwebsoft
|
||||
bucketDomain: https://oss.wsdns.cn
|
||||
aliyunDomain: https://oss-gxwebsoft.oss-cn-shenzhen.aliyuncs.com
|
||||
|
||||
# 生产环境证书配置
|
||||
certificate:
|
||||
# 生产环境使用挂载卷模式
|
||||
load-mode: VOLUME
|
||||
cert-root-path: /app/certs
|
||||
Reference in New Issue
Block a user