20 lines
849 B
Plaintext
20 lines
849 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=''
|
|
|
|
# this key can be use to disable specific platforms
|
|
# please add platforms list (comma separated, eg: 'pornhub,youporn,xnxx')
|
|
# list of platform values can be found in Platforms enum inside src/meta/settings.ts
|
|
# DISABLED_PLATFORMS='' |