$ pacman -Syu python-pip nginx uwsgi-plugin-python uwsgi
$ pip install flask
$ sudo mkdir -p /etc/nginx/sites-enabled
| 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 { |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |