I’m following the Django/Nginx/postgresql tutorial which is great, but assumes that I want the database on the droplet. Instead, I have a database cluster that I want my Django app to connect to, but I’m not sure if I need to specify the port in my Django settings, and if so, whether I need to open that port in ufw. So far, everything I’ve read has to do with external connections.
Thanks for any help on this!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Hi there,
To connect your Django application to an external Managed database cluster, you will indeed need to specify the database’s host and port in your Django settings. Here’s an example of how you might configure the Django
DATABASES
setting:~/myprojectdir/myproject/settings.py
:With that said, you can skip the
Creating the PostgreSQL Database and User
step from the tutorial.Also, you will need to make sure that your Droplet’s IP address is added to the Database cluster Trusted sources:
Let me know if you have any questions!
Best,
Bobby