An open API service indexing awesome lists of open source software.

https://github.com/fdiblen/django-nginx-docker

Django Nginx example
https://github.com/fdiblen/django-nginx-docker

django nginx uwsgi

Last synced: about 1 month ago
JSON representation

Django Nginx example

Awesome Lists containing this project

README

          

# django-nginx-docker

Simple example to show how to serve Django application with Nginx.

## Building

```shell
docker build -t django-nginx .
```

## Running

```shell
docker run -ti --rm \
--name django \
-p 8000:8000 \
-v $(pwd)/docs:/docs \
django-nginx:latest
```

Visit