From b72c997e55f63d2fb110a80e9ae41d1330478564 Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Sun, 19 Dec 2021 16:53:50 +0100 Subject: [PATCH] add proxy for stripe webhook 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 179dae24..2fb5551d 100644 --- a/docker/nginx/conf.d/server/server.account +++ b/docker/nginx/conf.d/server/server.account @@ -12,6 +12,10 @@ location /health { proxy_pass http://accounts:3000; } +location /stripe/webhook { + proxy_pass http://accounts:3000; +} + location /api/stripe/billing { proxy_pass http://dashboard:3000; }