Merge pull request #1481 from SkynetLabs/stripe-webhook-endpoint
add proxy for stripe webhook endpoint
This commit is contained in:
commit
34268bdd4a
|
@ -12,6 +12,10 @@ location /health {
|
||||||
proxy_pass http://accounts:3000;
|
proxy_pass http://accounts:3000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location /stripe/webhook {
|
||||||
|
proxy_pass http://accounts:3000;
|
||||||
|
}
|
||||||
|
|
||||||
location /api/stripe/billing {
|
location /api/stripe/billing {
|
||||||
proxy_pass http://dashboard:3000;
|
proxy_pass http://dashboard:3000;
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue