15 lines
613 B
Plaintext
15 lines
613 B
Plaintext
# enable content cache (less server api calls)
|
|
ENABLE_REDIS=true
|
|
|
|
# if cache enabled, sets redis url for Docker network (see docker-compose.yaml)
|
|
# REDIS_URL='redis://redis:6379'
|
|
|
|
# if cache enabled, set redis url for external redis
|
|
REDIS_URL='redis://127.0.0.1:6379'
|
|
|
|
# this key is necessary to encrypt/decrypt urls for server-side stream
|
|
# if not set, a default value (check const DEFAULT_ENCODING_KEY inside src/constants/encoding.ts ) will be used
|
|
# please generate a new one with command `pwgen 20 1` (pwgen command needs to be installed)
|
|
# uncomment variable below and add generated value
|
|
|
|
# ENCODING_KEY='' |