Setting up a Django Web Server (Part 1)
I'd like to introduce Marlow, my brand new web server! This site here is being hosted on it, and I have a number of other Django sites to get up there over the coming months. Marlow was setup because my other server, Apollo was simply over capacity. I wanted a more "pure" environment for my Django work, a server that only does exactly what is needed to get a Django site running, is secure, and is easy to manage.
In this series of posts I'll be documenting everything I did, command by command, as well as providing the reasons and links to help explain my decisions.
First things first
There are many guides out there on the web, not a single one of them will satisfy everyone's needs. Some will give you more than your need, others will leave you still needing to install more. This guide ...