summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index 9e4ba79..1d536a8 100644
--- a/README.md
+++ b/README.md
@@ -66,7 +66,7 @@ location @yourapplication {
66} 66}
67``` 67```
68 68
69If you prefer to use Apache: 69Nginx is the recommended web engine, but you can also use Apache if you prefer:
70 70
71``` 71```
72apt install apache2 libapache2-mod-proxy-uwsgi 72apt install apache2 libapache2-mod-proxy-uwsgi
@@ -79,10 +79,11 @@ ProxyPass / unix:/var/www/mat2-web/mat2-web.sock|uwsgi://localhost/
79 79
80``` 80```
81 81
82Now restart your webserver (nginx or apache) and uswgi 82Finally, restart `uwsgi` and your web server:
83
83``` 84```
84systemctl restart uwsgi 85systemctl restart uwsgi
85systemctl restart nginx 86systemctl restart nginx/apache/…
86``` 87```
87 88
88It should now be working. 89It should now be working.