From a3711b1e0f79ed32b25b96f2a0afc6810fdb1d1c Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Wed, 15 Dec 2021 12:44:01 +0100 Subject: [PATCH] expose accounts /health endpoint --- docker/nginx/conf.d/server/server.account | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/nginx/conf.d/server/server.account b/docker/nginx/conf.d/server/server.account index c30692c4..179dae24 100644 --- a/docker/nginx/conf.d/server/server.account +++ b/docker/nginx/conf.d/server/server.account @@ -8,6 +8,10 @@ location / { proxy_pass http://dashboard:3000; } +location /health { + proxy_pass http://accounts:3000; +} + location /api/stripe/billing { proxy_pass http://dashboard:3000; }