summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorjvoisin2018-12-09 19:00:33 +0100
committerjvoisin2018-12-09 19:00:33 +0100
commit73fcba8e0f43eb3e6d658db6a6e9986eba594ea1 (patch)
tree92af024212fb0d24775e6766f3fc9f5fea991039 /README.md
parent3231047c1475c9e500a0e5f92ea129fccef8dd28 (diff)
Add some colours to the readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files 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:
37Since uwsgi isn't fun to configure, feel free to slap this into your 37Since uwsgi isn't fun to configure, feel free to slap this into your
38`/etc/uwsgi/apps-enabled/mat2-web.ini`: 38`/etc/uwsgi/apps-enabled/mat2-web.ini`:
39 39
40``` 40```ini
41[uwsgi] 41[uwsgi]
42module=main 42module=main
43chdir = /var/www/mat2-web/ 43chdir = /var/www/mat2-web/
@@ -60,12 +60,12 @@ plugins = python3
60 60
61and this into your `/etc/nginx/site-enabled/mat2-web`: 61and this into your `/etc/nginx/site-enabled/mat2-web`:
62 62
63``` 63```nginx
64 location / { try_files $uri @yourapplication; } 64location / { try_files $uri @yourapplication; }
65 location @yourapplication { 65location @yourapplication {
66 include uwsgi_params; 66 include uwsgi_params;
67 uwsgi_pass unix:/var/www/mat2-web/mat2-web.sock; 67 uwsgi_pass unix:/var/www/mat2-web/mat2-web.sock;
68 } 68}
69``` 69```
70 70
71It should now be working. 71It should now be working.