hyperf-chat/.env.example

26 lines
396 B
Plaintext
Raw Normal View History

2020-11-03 14:07:54 +08:00
APP_NAME=hyperf-chat
2020-11-02 22:45:37 +08:00
APP_ENV=dev
DB_DRIVER=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=hyperf
DB_USERNAME=root
DB_PASSWORD=
DB_CHARSET=utf8mb4
DB_COLLATION=utf8mb4_unicode_ci
DB_PREFIX=
REDIS_HOST=localhost
REDIS_AUTH=(null)
REDIS_PORT=6379
2020-11-03 14:07:54 +08:00
REDIS_DB=0
2020-11-04 16:47:17 +08:00
# 本机IP地址
IP_ADDRESS=0.0.0.0
# 务必改为你自己的字符串
JWT_SECRET=hyperf
#token过期时间单位为秒
JWT_TTL=60