v0.1 version: added ci, container, nginx + base apigw config

This commit is contained in:
PB
2022-10-06 17:41:43 +02:00
parent 70687169f1
commit b0505bb041
12 changed files with 224 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
upstream identity_api {
# zone inventory_service 64k;
server identity_svc:8080; # container name from stack config
}
upstream basket_api {
# zone pricing_service 64k;
server basket_svc:8080; # container name from stack config
}