🔧(backend) support _FILE for secret environment variables

Allow configuration variables that handles secrets, like
`DJANGO_SECRET_KEY` to be able to read from a file which is given
through an environment file.

For example, if `DJANGO_SECRET_KEY_FILE` is set to
`/var/lib/meet/django-secret-key`, the value of `DJANGO_SECRET_KEY` will
be the content of `/var/lib/meet/django-secret-key`.
This commit is contained in:
soyouzpanda
2025-05-16 23:46:36 +02:00
committed by aleb_the_flash
parent 641a311bca
commit 26045bbffa
3 changed files with 15 additions and 12 deletions

View File

@@ -8,3 +8,5 @@ and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
- 🔧(backend) support `_FILE` for secret environment variables #566