I have my main python program running on an EC2 with celery and a local redis queue running on it. CELERY_BROKER_URL=redis://redis:6379
I have set up my development environment locally on my mac but would still like to connect to that redis queue on my EC2.
Do I need to add the public DNS to the front of the local environment's .env
(redis://redis:6379) file so celery knows how to connect to it? I am just not sure the best way to do this.
Thank you.