Ajout du TLS si supporté

This commit is contained in:
Jean-Marie Favreau 2023-11-15 22:19:44 +01:00
parent d3cd660fc1
commit bea3cfa50c
1 changed files with 2 additions and 1 deletions

View File

@ -160,7 +160,7 @@ REDIS_DB_KEYS = {
"prod": 2,
}
# Redis settings
# Redis settingsEMAIL_USE_TLS
REDIS_HOST = os_getenv("REDIS_HOST", "redis")
REDIS_PORT = os_getenv("REDIS_PORT", 6379)
@ -187,3 +187,4 @@ if os_getenv("EMAIL_BACKEND"):
EMAIL_PORT = os_getenv("EMAIL_PORT")
EMAIL_HOST_USER = os_getenv("EMAIL_HOST_USER")
EMAIL_HOST_PASSWORD = os_getenv("EMAIL_HOST_PASSWORD")
EMAIL_USE_TLS = os_getenv("EMAIL_USE_TLS")