├── .ebextensions ├── 01_setup_web_container.config └── 02_deploy_app.config ├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── ebsample ├── __init__.py ├── base_settings.py ├── settings.py ├── urls.py └── wsgi.py ├── ebsample_app ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── static │ ├── images │ │ ├── Elastic-Beanstalk.png │ │ ├── django.png │ │ ├── nginx.png │ │ └── uwsgi.png │ └── style.css ├── templates │ ├── home.html │ └── welcome.html ├── tests.py └── views.py ├── manage.py ├── requirements.txt └── static ├── .keep └── images └── Software Configuration.png /.ebextensions/01_setup_web_container.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/.ebextensions/01_setup_web_container.config -------------------------------------------------------------------------------- /.ebextensions/02_deploy_app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/.ebextensions/02_deploy_app.config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/README.md -------------------------------------------------------------------------------- /ebsample/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ebsample/base_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample/base_settings.py -------------------------------------------------------------------------------- /ebsample/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample/settings.py -------------------------------------------------------------------------------- /ebsample/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample/urls.py -------------------------------------------------------------------------------- /ebsample/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample/wsgi.py -------------------------------------------------------------------------------- /ebsample_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ebsample_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample_app/admin.py -------------------------------------------------------------------------------- /ebsample_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample_app/apps.py -------------------------------------------------------------------------------- /ebsample_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ebsample_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample_app/models.py -------------------------------------------------------------------------------- /ebsample_app/static/images/Elastic-Beanstalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample_app/static/images/Elastic-Beanstalk.png -------------------------------------------------------------------------------- /ebsample_app/static/images/django.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample_app/static/images/django.png -------------------------------------------------------------------------------- /ebsample_app/static/images/nginx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample_app/static/images/nginx.png -------------------------------------------------------------------------------- /ebsample_app/static/images/uwsgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample_app/static/images/uwsgi.png -------------------------------------------------------------------------------- /ebsample_app/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample_app/static/style.css -------------------------------------------------------------------------------- /ebsample_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample_app/templates/home.html -------------------------------------------------------------------------------- /ebsample_app/templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample_app/templates/welcome.html -------------------------------------------------------------------------------- /ebsample_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample_app/tests.py -------------------------------------------------------------------------------- /ebsample_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/ebsample_app/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/images/Software Configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfg1969/elastic-beanstalk-nginx-uwsgi-django/HEAD/static/images/Software Configuration.png --------------------------------------------------------------------------------