├── .gitignore ├── LICENSE ├── README.md ├── conf ├── nginx.conf └── uwsgi.ini ├── djangosite ├── djangosite │ ├── __init__.py │ ├── settings │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dev.py │ │ └── prod.py │ ├── urls.py │ └── wsgi.py ├── helloworldapp │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── static │ │ ├── css │ │ │ └── helloworld.css │ │ └── images │ │ │ └── python.png │ ├── templates │ │ └── helloworld │ │ │ ├── base.html │ │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py ├── static │ └── css │ │ └── global.css └── templates │ ├── base.html │ └── index.html ├── requirements.txt └── tools └── django_secret_keygen.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/README.md -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /conf/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/conf/uwsgi.ini -------------------------------------------------------------------------------- /djangosite/djangosite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosite/djangosite/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosite/djangosite/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/djangosite/settings/base.py -------------------------------------------------------------------------------- /djangosite/djangosite/settings/dev.py: -------------------------------------------------------------------------------- 1 | from .base import * 2 | 3 | DEBUG = True 4 | -------------------------------------------------------------------------------- /djangosite/djangosite/settings/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/djangosite/settings/prod.py -------------------------------------------------------------------------------- /djangosite/djangosite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/djangosite/urls.py -------------------------------------------------------------------------------- /djangosite/djangosite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/djangosite/wsgi.py -------------------------------------------------------------------------------- /djangosite/helloworldapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosite/helloworldapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/helloworldapp/admin.py -------------------------------------------------------------------------------- /djangosite/helloworldapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/helloworldapp/apps.py -------------------------------------------------------------------------------- /djangosite/helloworldapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/helloworldapp/models.py -------------------------------------------------------------------------------- /djangosite/helloworldapp/static/css/helloworld.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/helloworldapp/static/css/helloworld.css -------------------------------------------------------------------------------- /djangosite/helloworldapp/static/images/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/helloworldapp/static/images/python.png -------------------------------------------------------------------------------- /djangosite/helloworldapp/templates/helloworld/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/helloworldapp/templates/helloworld/base.html -------------------------------------------------------------------------------- /djangosite/helloworldapp/templates/helloworld/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/helloworldapp/templates/helloworld/index.html -------------------------------------------------------------------------------- /djangosite/helloworldapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/helloworldapp/tests.py -------------------------------------------------------------------------------- /djangosite/helloworldapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/helloworldapp/urls.py -------------------------------------------------------------------------------- /djangosite/helloworldapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/helloworldapp/views.py -------------------------------------------------------------------------------- /djangosite/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/manage.py -------------------------------------------------------------------------------- /djangosite/static/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/static/css/global.css -------------------------------------------------------------------------------- /djangosite/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/templates/base.html -------------------------------------------------------------------------------- /djangosite/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/djangosite/templates/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.9.1 2 | -------------------------------------------------------------------------------- /tools/django_secret_keygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicodv/django-uwsgi-nginx/HEAD/tools/django_secret_keygen.py --------------------------------------------------------------------------------