File size: 784 Bytes
1c1e321 d360329 e32956e 1c1e321 7c87ea8 1c1e321 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
from os import environ
import ssl
task_serializer = "pickle"
result_serializer = "pickle"
event_serializer = "json"
accept_content = ["application/json", "application/x-python-serialize"]
result_accept_content = ["application/json", "application/x-python-serialize"]
timezone = "Europe/Oslo"
enable_utc = True
broker_url = f"rediss://default:157885c870c9fe1154ac9ae5d0ab97b6@master.llm-cache--6h5xnbs2d8rh.addon.code.run:6379?ssl_cert_reqs=none"
result_backend = f"db+postgresql+psycopg2://postgres:PkkneZrSFsnJR6B@db.vfhoydxvxuesxhrcdnmx.supabase.co: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",
}
|