Merge pull request #1481 from SkynetLabs/stripe-webhook-endpoint

add proxy for stripe webhook endpoint
This commit is contained in:
Karol Wypchło 2021-12-19 17:40:28 +01:00 committed by Filip Rysavy
parent 0f7cf137ff
commit 040ac2ceb0
No known key found for this signature in database
GPG Key ID: EA1F430401C92D99
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;
}