add proxy for stripe webhook endpoint

This commit is contained in:
Karol Wypchlo 2021-12-19 16:53:50 +01:00
parent b37008b497
commit b72c997e55
No known key found for this signature in database
GPG Key ID: C92C016317A964D0
1 changed files with 4 additions and 0 deletions

View File

@ -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;
}