-
Notifications
You must be signed in to change notification settings - Fork 1
How To Serve Django Applications with uWSGI and Nginx on Ubuntu 16.04
mswdevsla edited this page Feb 11, 2017
·
1 revision
Django is a powerful web framework that can help you get your Python application or website off the ground. Django includes a simplified development server for testing your code locally, but for anything even slightly production related, a more secure and powerful web server is required.
In this guide, we will demonstrate how to install and configure some components on Ubuntu 16.04 to support and serve Django applications. We will configure the uWSGI application container server to interface with our applications. We will then set up Nginx to reverse proxy to uWSGI, giving us access to its security and performance features to serve our apps.