I deployed Django's app with Digital Ocean App service. This is easy and quick without me having to deal with setting up a Ubuntu Droplet or anything like that for Django. I also got Postgres as the main database for the Django app. The problem is when I also set up Redis Managed Database as a cache server for my app, using VPC network connection such as rediss://private-location-on-digital-ocean:port# (also added the Django App and my own IP address as trusted source) - (also installed django-redis using pip) - to my chagrin I either got Internal Server Error or some vague error said that I have to check the log. By the way I did update the requirements.txt to make sure all packages were installed for Redis to run properly with Django app. Also, I set up the Redis as the CACHE backend in settings.py. The only thing I see is that Postgres is being listed as a component for my Django app and Redis DB is not but it's using the same VPC that my Django app is using. What could be the problem that I missed in order for me to get Redis to act as a cache server for my Django app on DO? By the way, when I set up Redis on the local development server on my laptop, everything runs smoothly with exact same source code - but not so when I try to connect to managed Redis on DO. So, any advice folks?