summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-12-24 13:50:18 +0100
committerjvoisin2018-12-24 13:50:18 +0100
commit964d3683b5ba5e5fc2148764acf291b24b1d4a94 (patch)
treea5f34503caabf7492c107d02d5f69fc90efdfef5
parentcfeaef897eb5dc24b35f30fad9fa3bfd370bcf20 (diff)
Improve a bit the previous commit
-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.