31 lines
754 B
YAML
31 lines
754 B
YAML
# 项目相关配置
|
||
app:
|
||
# 名称
|
||
name: ca-mini
|
||
# 版本
|
||
version: 1.0.0
|
||
# 版权年份
|
||
copyrightYear: 2024
|
||
# 服务配置
|
||
server:
|
||
# 服务器的HTTP端口,默认为10000
|
||
port: 60000
|
||
# 应用的访问路径
|
||
context-path: /
|
||
# 日志配置
|
||
logging:
|
||
# 日志级别
|
||
level: debug
|
||
# 日志文件路径
|
||
path: /home/code/git/ca-mini/ca-server/logs
|
||
|
||
datasource:
|
||
# 数据源配置
|
||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||
# 数据库连接URL
|
||
# url: jdbc:mysql://localhost:3306/ca-mini?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC&useSSL=false
|
||
url: tcp(8.147.235.150:60306)/ca-mini?charset=utf8mb3&parseTime=True&loc=Local
|
||
# 数据库用户名
|
||
username: root
|
||
# 数据库密码
|
||
password: yyds@8848 |