proxyraye-nextjs/.env.example

20 lines
849 B
Plaintext
Raw Permalink Normal View History

2024-05-17 00:25:27 +00:00
# enable content cache (less server api calls)
ENABLE_REDIS=true
# if cache enabled, sets redis url for Docker network (see docker-compose.yaml)
2024-05-18 10:41:16 +00:00
# REDIS_URL='redis://redis:6379'
2024-05-17 00:25:27 +00:00
# if cache enabled, set redis url for external redis
2024-05-24 21:09:56 +00:00
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
2024-05-26 12:22:52 +00:00
# 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=''