File size: 604 Bytes
252d749 d3edbc8 48d918a 252d749 aeb11ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
from os import environ
import ssl
task_serializer = "json"
result_serializer = "json"
accept_content = ["json"]
timezone = "Europe/Oslo"
enable_utc = True
broker_url = f"amqps://sjefunwo:[email protected]/sjefunwo"
result_backend = f"db+postgresql+psycopg2://postgres:[email protected]:5432/postgres"
# SSL/TLS and SNI configuration
# broker_use_ssl = {
# "ssl_cert_reqs": ssl.CERT_NONE,
# "ssl_match_hostname": False,
# "ssl_check_hostname": False,
# "ssl_sni": "master.cache--j5zxzwppzvjs.addon.code.run",
# }
|