2024-03-26 10:38:49 +08:00
|
|
|
# server base
|
|
|
|
PORT=9520
|
|
|
|
|
|
|
|
DB_HOST=mysql
|
|
|
|
DB_PORT=3306
|
|
|
|
DB_USER=root
|
|
|
|
DB_PASS=123456
|
|
|
|
DB_DATABASE=chatgpt
|
|
|
|
DB_SYNC=true
|
|
|
|
|
|
|
|
# Redis
|
|
|
|
REDIS_PORT=6379
|
|
|
|
REDIS_HOST=redis
|
|
|
|
REDIS_PASSWORD=
|
|
|
|
REDIS_USER=
|
2024-07-07 13:09:08 +08:00
|
|
|
REDIS_DB=0
|
2024-03-26 10:38:49 +08:00
|
|
|
|
|
|
|
# 是否测试环境
|
2024-04-21 09:07:51 +08:00
|
|
|
ISDEV=FALSE
|
2024-03-26 10:38:49 +08:00
|
|
|
|
2024-07-07 13:09:08 +08:00
|
|
|
# 自定义微信URL
|
|
|
|
weChatOpenUrl=https://open.weixin.qq.com
|
|
|
|
weChatApiUrl=https://api.weixin.qq.com
|
|
|
|
weChatMpUrl=https://mp.weixin.qq.com
|
2024-07-31 14:12:56 +08:00
|
|
|
|
|
|
|
# 自定义后台路径
|
|
|
|
ADMIN_SERVE_ROOT=/admin
|