From 1fe24e2dc2907e34fc6dbb0667decdd47e25d36d Mon Sep 17 00:00:00 2001 From: Ben <32749673+ketnipz@users.noreply.github.com> Date: Sat, 16 May 2020 23:13:39 +0100 Subject: [PATCH] Fix proxy URL Should be pointed at dash, not local --- templates/sites/vanilla.conf.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/sites/vanilla.conf.template b/templates/sites/vanilla.conf.template index 5150ec5..9437ce0 100644 --- a/templates/sites/vanilla.conf.template +++ b/templates/sites/vanilla.conf.template @@ -23,7 +23,7 @@ server { } location ~ ^/(.*)/penguin/activate/(.*) { - proxy_pass http://localhost:3000/activate/vanilla/$1/$2; + proxy_pass http://dash:3000/activate/vanilla/$1/$2; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr;