feat: add redis dns parameter for hydra-dispatcher

Used by the cache when available
This commit is contained in:
Laurent Gourvenec 2024-07-12 14:25:31 +02:00
parent 6c008bb053
commit 3d11c50b0a
2 changed files with 2 additions and 0 deletions

View File

@ -82,6 +82,7 @@ hydra_dispatcher_available_locales:
- en
hydra_dispatcher_sentry_dsn:
hydra_dispatcher_sentry_environment:
hydra_dispatcher_redis_dsn:
hydra_dispatcher_mounts: []
hydra_dispatcher_disable_app_auto_select: true
hydra_dispatcher_webhook: false

View File

@ -20,6 +20,7 @@ PODMAN_ARGS="\
-e 'TRUSTED_PROXIES=127.0.0.1,10.0.2.0/24' \
-e 'SENTRY_DSN={{ hydra_dispatcher_sentry_dsn }}' \
-e 'SENTRY_ENVIRONMENT={{ hydra_dispatcher_sentry_environment }}' \
-e 'REDIS_DSN={{ hydra_dispatcher_redis_dsn }}' \
-e 'DISABLE_APP_AUTO_SELECT={{ hydra_dispatcher_disable_app_auto_select }}' \
-e 'PHP_FPM_MEMORY_LIMIT=128m' \
-v /etc/hydra-dispatcher/conf.d:/app/config/hydra \