From 1dd00670eb1749d8cc92ca52d3372fbb0256ba50 Mon Sep 17 00:00:00 2001 From: PLUJA <64632615+pluja@users.noreply.github.com> Date: Sat, 26 Sep 2020 20:23:56 +0200 Subject: [PATCH 1/2] Fix typo on nginx --- SELF-HOSTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SELF-HOSTING.md b/SELF-HOSTING.md index cfa42fd..3cba671 100644 --- a/SELF-HOSTING.md +++ b/SELF-HOSTING.md @@ -189,7 +189,7 @@ server { expires 30d; } - location ~ (/videoplayback|/vi/|/a) { + location ~ (/videoplayback|/vi/|/a/) { proxy_buffering off; resolver 1.1.1.1; proxy_pass https://$arg_host; From 4c43b6767867adc8989a9bd20c0b9611bafd7f28 Mon Sep 17 00:00:00 2001 From: PLUJA <64632615+pluja@users.noreply.github.com> Date: Sat, 26 Sep 2020 20:24:24 +0200 Subject: [PATCH 2/2] Fix typo on update instructions that broke icons --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 695ed80..5c1c2f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ 2. **IMPORTANT** You will need to change the nginx config file (`/etc/nginx/sites-enabled/yotter`) by adding `/a` on the proxy rule so it should look like this: ``` -location ~ (/videoplayback|/vi/|/a) { +location ~ (/videoplayback|/vi/|/a/) { proxy_buffering off; resolver 1.1.1.1; proxy_pass https://$arg_host;