summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-12-25 19:24:42 +0100
committerjvoisin2018-12-25 19:24:42 +0100
commit1837b53ece60a0a9f6106480ec05ec92c7cf62bf (patch)
treef3ad134084668c201eddcb83a04263186f365a46
parent81ac5c3721220e01af2dbbeb616f3fb818365709 (diff)
Improve a bit the readme
-rw-r--r--README.md9
1 files changed, 7 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1d536a8..edf48c1 100644
--- a/README.md
+++ b/README.md
@@ -11,6 +11,11 @@ This is an online version of [mat2](https://0xacab.org/jvoisin/mat2).
11Keep in mind that this is a beta version, don't rely on it for anything 11Keep in mind that this is a beta version, don't rely on it for anything
12serious, yet. 12serious, yet.
13 13
14# Demo instance
15
16There is a demo instance deployed a [mat2-web.dustri.org](https://mat2-web.dustri.org).
17Please don't upload any sensitive files on it.
18
14# How to deploy it? 19# How to deploy it?
15 20
16Since mat2 isn't available in debian stable yet, you might want to add this to 21Since mat2 isn't available in debian stable yet, you might want to add this to
@@ -61,8 +66,8 @@ and this into your `/etc/nginx/site-enabled/mat2-web`:
61```nginx 66```nginx
62location / { try_files $uri @yourapplication; } 67location / { try_files $uri @yourapplication; }
63location @yourapplication { 68location @yourapplication {
64 include uwsgi_params; 69 include uwsgi_params;
65 uwsgi_pass unix:/var/www/mat2-web/mat2-web.sock; 70 uwsgi_pass unix:/var/www/mat2-web/mat2-web.sock;
66} 71}
67``` 72```
68 73