Git Product home page Git Product logo

docker-nginx-django-channels's Introduction

docker-nginx-django-channels

Simple example showing how django channels can work behind nginx

Getting started

Run docker-compose up --build -d, omitting -d if you want to be fed the logs immediately (remember ctrl + z will exit out of logs without killing the containers).

Then run docker-compose run django_asgi python manage.py migrate for the initial migration. This can also be achieved by entering the container via docker exec -it django_asgi bash and then running the commands.

and finally run docker-compose run django_asgi python manage.py createsuperuser

How it works

The default.conf nginx configuration shows how certain paths are mapped to either the wsgi worker or the asgi worker:

  • / maps to uwsgi. Meaning it passes on the request via uwsgi_pass to django_wsgi, which internal DNS lookup points to the django_wsgi container
  • /chat/stream maps to asgi. This uses proxy_pass to conserve the websocket and passes to http://django_asgi, which maps to the django_asgi container.

Credits

This repo is based on Andrew Godwin's channels examples.

docker-nginx-django-channels's People

Contributors

jhnoor avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.