Skip to content

Commit 7fc33c2

Browse files
authored
Add support for secure Redis (TLS support) (cookiecutter#5526)
1 parent d00cd42 commit 7fc33c2

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

docs/3-deployment/deployment-on-heroku.rst

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Run these commands to deploy the project to Heroku:
1414
1515
# Note: this is not a free plan
1616
heroku addons:create heroku-postgresql:essential-0
17+
1718
# On Windows use double quotes for the time zone, e.g.
1819
# heroku pg:backups schedule --at "02:00 America/Los_Angeles" DATABASE_URL
1920
heroku pg:backups schedule --at '02:00 America/Los_Angeles' DATABASE_URL

uv.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

{{cookiecutter.project_slug}}/config/settings/base.py

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# ruff: noqa: ERA001, E501
22
"""Base settings to build other settings files upon."""
33

4+
{% if cookiecutter.use_celery == 'y' -%}
5+
import ssl
6+
{%- endif %}
47
from pathlib import Path
58

69
import environ
@@ -283,6 +286,7 @@
283286
}
284287

285288
REDIS_URL = env("REDIS_URL", default="redis://{% if cookiecutter.use_docker == 'y' %}redis{%else%}localhost{% endif %}:6379/0")
289+
REDIS_SSL = REDIS_URL.startswith("rediss://")
286290

287291
{% if cookiecutter.use_celery == 'y' -%}
288292
# Celery
@@ -292,8 +296,12 @@
292296
CELERY_TIMEZONE = TIME_ZONE
293297
# https://docs.celeryq.dev/en/stable/userguide/configuration.html#std:setting-broker_url
294298
CELERY_BROKER_URL = REDIS_URL
299+
# https://docs.celeryq.dev/en/stable/userguide/configuration.html#redis-backend-use-ssl
300+
CELERY_BROKER_USE_SSL = {"ssl_cert_reqs": ssl.CERT_NONE} if REDIS_SSL else None
295301
# https://docs.celeryq.dev/en/stable/userguide/configuration.html#std:setting-result_backend
296302
CELERY_RESULT_BACKEND = REDIS_URL
303+
# https://docs.celeryq.dev/en/stable/userguide/configuration.html#redis-backend-use-ssl
304+
CELERY_REDIS_BACKEND_USE_SSL = CELERY_BROKER_USE_SSL
297305
# https://docs.celeryq.dev/en/stable/userguide/configuration.html#result-extended
298306
CELERY_RESULT_EXTENDED = True
299307
# https://docs.celeryq.dev/en/stable/userguide/configuration.html#result-backend-always-retry

0 commit comments

Comments
 (0)