From 73fcba8e0f43eb3e6d658db6a6e9986eba594ea1 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sun, 9 Dec 2018 19:00:33 +0100 Subject: [PATCH] Add some colours to the readme --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 79b9069..4020d0d 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Then: Since uwsgi isn't fun to configure, feel free to slap this into your `/etc/uwsgi/apps-enabled/mat2-web.ini`: -``` +```ini [uwsgi] module=main chdir = /var/www/mat2-web/ @@ -60,12 +60,12 @@ plugins = python3 and this into your `/etc/nginx/site-enabled/mat2-web`: -``` - location / { try_files $uri @yourapplication; } - location @yourapplication { - include uwsgi_params; - uwsgi_pass unix:/var/www/mat2-web/mat2-web.sock; - } +```nginx +location / { try_files $uri @yourapplication; } +location @yourapplication { + include uwsgi_params; + uwsgi_pass unix:/var/www/mat2-web/mat2-web.sock; +} ``` It should now be working.