23 lines
563 B
Plaintext
23 lines
563 B
Plaintext
# 数据库环境变量配置
|
|
# 生产环境数据库配置
|
|
|
|
# MySQL 数据库配置
|
|
MYSQL_ROOT_PASSWORD=your_strong_root_password_here
|
|
MYSQL_DATABASE=reposync
|
|
MYSQL_USER=reposync_user
|
|
MYSQL_PASSWORD=your_strong_user_password_here
|
|
|
|
# 应用连接数据库配置
|
|
CEROBOT_MYSQL_HOST=mysql
|
|
CEROBOT_MYSQL_PORT=3306
|
|
CEROBOT_MYSQL_USER=reposync_user
|
|
CEROBOT_MYSQL_PWD=your_strong_user_password_here
|
|
CEROBOT_MYSQL_DB=reposync
|
|
|
|
# 系统配置
|
|
SYS_ENV=PROD
|
|
BUC_KEY=your_encryption_key_here
|
|
|
|
# 部署配置
|
|
DEPLOY_HOST=114.55.237.214
|
|
DEPLOY_USER=root |