This commit is contained in:
Michał Leszczyk 2022-05-25 13:36:41 +02:00
parent a0446a9860
commit 52db6b96df
No known key found for this signature in database
GPG Key ID: FA123CA8BAA2FBF4
2 changed files with 10 additions and 10 deletions

View File

@ -21,7 +21,7 @@ services:
accounts:
# uncomment "build" and comment out "image" to build from sources
build: https://github.com/SkynetLabs/skynet-accounts.git#dashboard-v2-tests
build: https://github.com/SkynetLabs/skynet-accounts.git#main
# image: skynetlabs/skynet-accounts:1.1.0
container_name: accounts
restart: unless-stopped

View File

@ -16,17 +16,17 @@ location /health {
proxy_pass http://accounts:3000;
}
location /stripe/webhook {
proxy_pass http://accounts:3000;
}
#location /stripe/webhook {
# proxy_pass http://accounts:3000;
#}
location /api/stripe/billing {
proxy_pass http://dashboard:3000;
}
#location /api/stripe/billing {
# proxy_pass http://dashboard:3000;
#}
location /api/stripe/checkout {
proxy_pass http://dashboard:3000;
}
#location /api/stripe/checkout {
# proxy_pass http://dashboard:3000;
#}
location /api {
rewrite /api/(.*) /$1 break;