Fix: Add env REDIS_DB directive to nginx.conf
All checks were successful
Build and Push / build-all (push) Successful in 19s

Allow Lua workers to access REDIS_DB environment variable.
Without this directive, os.getenv("REDIS_DB") returns nil.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
doomtube 2026-01-08 21:55:26 -05:00
parent db7faa5a75
commit 9ff89fa18b

View file

@ -8,6 +8,7 @@ user nobody nogroup;
env REDIS_PASS;
env REDIS_PORT;
env REDIS_HOST;
env REDIS_DB;
env JWT_SECRET;
events {