Question

Bad gateway error message with Django

I’m getting a bad gateway error. (My own fault for using Youtube)

This is the Nginx error message

2018/01/10 17:07:58 [error] 2210#2210: *5 recv() failed (104: Connection reset by peer) while reading response header from upstream, client: 86.167.15.195, server: _, request: “GET / HTTP/1.1”, upstream: “http://unix:/home/django/gunicorn.socket:/”, host: “159.65.16.251” 2018/01/10 17:08:45 [error] 2210#2210: *7 recv() failed (104: Connection reset by peer) while reading response header from upstream, client: 86.167.15.195, server: _, request: “GET / HTTP/1.1”, upstream:

Looking at the other questions I changed ALLOWED_HOSTS = [ipaddress] and added ALLOWED_HOSTS += ip_addresses() top the bottom

A really dumb question do I change the secret key on the droplet to the secret key from my project?

WSGI.py

import os

from django.core.wsgi import get_wsgi_application

os.environ.setdefault(“DJANGO_SETTINGS_MODULE”, “django_project.settings”)

application = get_wsgi_application()

URls.py

from django.conf.urls import include, url from django.contrib import admin

urlpatterns = [ url(r’^admin/‘, include(admin.site.urls)), url(r’^‘, include(‘personal.urls’)), url(r’^blog/‘, include(‘blog.urls’)), url(r’^writing/', include(‘writing.urls’)), ]

Show comments

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.

Accepted Answer

I managed to get this up and running I just didn’t migrate it.

Try DigitalOcean for free

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

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

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

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

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