This document has now been incorporated into the uWSGI documentation:
http://uwsgi-docs.readthedocs.org/en/latest/tutorials/Django_and_nginx.html
Steps with explanations to set up a server using:
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
| server { | |
| server_name [host]; | |
| root /var/www/[document_root]; ## <-- Your only path reference. | |
| # Enable compression, this will help if you have for instance advagg module | |
| # by serving Gzip versions of the files. | |
| gzip_static on; | |
| location = /favicon.ico { |