fix: REDIS_HOST and MEMCACHED_HOST environment variable
Some checks are pending
Deploy CI - 13.0 / deploy (push) Waiting to run

This commit is contained in:
Jizhou Deng 2025-12-05 11:11:42 +08:00
parent e00ea256ff
commit 538cfeb30a
2 changed files with 6 additions and 6 deletions

View File

@ -402,12 +402,12 @@ SEAFILE_MYSQL_DB_SEAHUB_DB_NAME=seahub_db
CACHE_PROVIDER=redis # options: redis (recommend), memcached CACHE_PROVIDER=redis # options: redis (recommend), memcached
### Redis ### Redis
REDIS_HOST=<your redis host> REDIS_HOST='<your redis host>'
REDIS_PORT=6379 REDIS_PORT=6379
REDIS_PASSWORD= REDIS_PASSWORD=
### Memcached ### Memcached
MEMCACHED_HOST=<your memcached host> MEMCACHED_HOST='<your memcached host>'
MEMCACHED_PORT=11211 MEMCACHED_PORT=11211
``` ```
@ -438,7 +438,7 @@ Memory cache is mandatory for pro edition. You may use Memcached or Redis as cac
CACHE_PROVIDER=memcached CACHE_PROVIDER=memcached
### Memcached ### Memcached
MEMCACHED_HOST=memcached MEMCACHED_HOST='<your memcached host>'
MEMCACHED_PORT=11211 MEMCACHED_PORT=11211
``` ```
@ -467,7 +467,7 @@ Memory cache is mandatory for pro edition. You may use Memcached or Redis as cac
CACHE_PROVIDER=redis CACHE_PROVIDER=redis
### Redis ### Redis
REDIS_HOST=redis REDIS_HOST='<your redis host>'
REDIS_PORT=6379 REDIS_PORT=6379
REDIS_PASSWORD= REDIS_PASSWORD=

View File

@ -114,12 +114,12 @@ SEAFILE_MYSQL_DB_SEAHUB_DB_NAME=seahub_db
CACHE_PROVIDER=redis # options: redis (recommend), memcached CACHE_PROVIDER=redis # options: redis (recommend), memcached
### Redis ### Redis
REDIS_HOST=<your redis host> REDIS_HOST='<your redis host>'
REDIS_PORT=6379 REDIS_PORT=6379
REDIS_PASSWORD= REDIS_PASSWORD=
### Memcached ### Memcached
MEMCACHED_HOST=<your memcached host> MEMCACHED_HOST='<your memcached host>'
MEMCACHED_PORT=11211 MEMCACHED_PORT=11211
``` ```