From 8e0454a13baa959ae236b03ba400f01d07acd444 Mon Sep 17 00:00:00 2001 From: spiral Date: Wed, 7 Dec 2022 11:26:00 +0000 Subject: [PATCH] chore(web-proxy): update remote addresses for api/dashboard --- services/web-proxy/main.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/services/web-proxy/main.go b/services/web-proxy/main.go index 6d7c72ad..5b39aa19 100644 --- a/services/web-proxy/main.go +++ b/services/web-proxy/main.go @@ -21,9 +21,10 @@ var limiter *redis_rate.Limiter // todo: be able to raise ratelimits for >1 consumers var token2 string +// todo: this shouldn't be in this repo var remotes = map[string]*httputil.ReverseProxy{ - "api.pluralkit.me": proxyTo("[fdaa:0:ae33:a7b:8dd7:0:a:2]:8080"), - "dash.pluralkit.me": proxyTo("[fdaa:0:ae33:a7b:8dd7:0:a:2]:8080"), + "api.pluralkit.me": proxyTo("[fdaa:0:ae33:a7b:8dd7:0:a:202]:5000"), + "dash.pluralkit.me": proxyTo("[fdaa:0:ae33:a7b:8dd7:0:a:202]:8080"), "sentry.pluralkit.me": proxyTo("[fdaa:0:ae33:a7b:8dd7:0:a:202]:9000"), "plausible.pluralkit.me": proxyTo("[fdaa:0:ae33:a7b:8dd7:0:a:202]:8000"), }