Question

IP connection works but Domain returns 500

I was following through the tutorial https://www.digitalocean.com/community/tutorials/how-to-set-up-django-with-postgres-nginx-and-gunicorn-on-ubuntu-20-04 Everything worked fine until I decided to setup my Domain name that I bought few days ago. I am pointing to the digitalocean servers and I have added DNS records:

A www.balkan-ultra.com directs to 164.92.236.124	
A balkan-ultra.com directs to 164.92.236.124
NS balkan-ultra.com directs to ns3.digitalocean.com.
...

My Django allowed hosts: ['.ondigitalocean.app', '164.92.236.124', 'balkan-ultra.com', 'www.balkan-ultra.com']

nginx config:

server {
    listen 80;
    server_name balkan-ultra.com www.balkan-ultra.com;

    location = /favicon.ico { access_log off; log_not_found off; }

    location / {
        include proxy_params;
        proxy_pass http://unix:/run/gunicorn.sock;
    }
}

UFW is disabled

http://164.92.236.124:8000/ - Works fine http://164.92.236.124/ - Returns ‘Welcome to nginx!’ html www.balkan-ultra.com - Internal Server Error balkan-ultra.com - Internal Server Error


Submit an answer


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!

Sign In or Sign Up to Answer

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.

Bobby Iliev
Site Moderator
Site Moderator badge
December 26, 2022

Hi there,

Whenever you see a 500 error, it is best to check the Nginx error logs:

tail -100 /var/log/nginx

That way you can see the actual problem rather than the generic 500 error.

I can see that your site seems to be up and running already but in case anyone comes across this in the future, I would suggest to follow these steps here on how to troubleshoot common Nginx errors:

https://www.digitalocean.com/community/tutorials/common-nginx-connection-errors

Best,

Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

card icon
Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Sign up
card icon
Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We’d like to help.

Learn more
card icon
Become a contributor

You get paid; we donate to tech nonprofits.

Learn more
Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow – whether you’re running one virtual machine or ten thousand.

Learn more ->
DigitalOcean Cloud Control Panel
Get started for free

Enter your email to get $200 in credit for your first 60 days with DigitalOcean.

New accounts only. By submitting your email you agree to our Privacy Policy.

© 2023 DigitalOcean, LLC.