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?
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault(“DJANGO_SETTINGS_MODULE”, “django_project.settings”)
application = get_wsgi_application()
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’)), ]
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!
Accepted Answer
I managed to get this up and running I just didn’t migrate it.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.