mirror of https://github.com/langgenius/dify.git
use REDIS_PORT to replace 6379 in celery config (#16182)
This commit is contained in:
parent
bfc0d606dc
commit
4448a54cc1
|
@ -26,9 +26,6 @@ ACCESS_TOKEN_EXPIRE_MINUTES=60
|
|||
# Refresh token expiration time in days
|
||||
REFRESH_TOKEN_EXPIRE_DAYS=30
|
||||
|
||||
# celery configuration
|
||||
CELERY_BROKER_URL=redis://:difyai123456@localhost:6379/1
|
||||
|
||||
# redis configuration
|
||||
REDIS_HOST=localhost
|
||||
REDIS_PORT=6379
|
||||
|
@ -50,6 +47,9 @@ REDIS_USE_CLUSTERS=false
|
|||
REDIS_CLUSTERS=
|
||||
REDIS_CLUSTERS_PASSWORD=
|
||||
|
||||
# celery configuration
|
||||
CELERY_BROKER_URL=redis://:difyai123456@localhost:${REDIS_PORT}/1
|
||||
|
||||
# PostgreSQL database configuration
|
||||
DB_USERNAME=postgres
|
||||
DB_PASSWORD=difyai123456
|
||||
|
|
Loading…
Reference in New Issue