ValeriuV
DNS and subdomains
Hello!
I have a django app with multiple tenants and have issues with public networking.
I have the website on the root domain fleetdata.pro and multiple tenants on *.fleetdata.pro.
Everything was fine until I had to authenticate my domain for the email provider Brevo (sendgrid). They require a TXT record with @ as host. This conflicts with the CNAME @ record for fleetdata.pro from railway pointing to the website.
I talked to NameCheap and they suggested to remove the CNAME @ record and replace it with a www record pointing to the hosting from railway and also add a URL forwarding from fleetdata.pro to www.fleetdata.pro. Which I did. Now neither the non-www and www.fleetdata.pro works. How can I fix this?
5 replies
How do I deploy Django-Q (task queue) to Railway?
Are there any tutorials on how to achieve this?
After searching for a bit it looks like I need to do the following:
1. Redis DB service and connect to it from settings.py under the Q_CLUSTER/redis settings
2. set the worker in the Procfile: worker: python manage.py qcluster
I did both those things but still the tasks don't start.
Thanks!
40 replies