summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.