forked from Alexey/DAS_2024_1
заходит как-то в бар чебурашка с чемоданом
This commit is contained in:
parent
8f2a9c126c
commit
e295c3fa5f
@ -1,6 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
restaurant-service:
|
restaurant-service:
|
||||||
build: ./ApiRestaurant/
|
build: ./ApiRestaurant/
|
||||||
|
container_name: restaurant
|
||||||
environment:
|
environment:
|
||||||
WAITER_API_URL: http://waiter-service:4000
|
WAITER_API_URL: http://waiter-service:4000
|
||||||
expose:
|
expose:
|
||||||
@ -10,6 +11,7 @@ services:
|
|||||||
|
|
||||||
waiter-service:
|
waiter-service:
|
||||||
build: ./ApiWaiter/
|
build: ./ApiWaiter/
|
||||||
|
container_name: waiter
|
||||||
environment:
|
environment:
|
||||||
PORT: 4000
|
PORT: 4000
|
||||||
expose:
|
expose:
|
||||||
|
@ -9,7 +9,7 @@ http {
|
|||||||
server_name localhost;
|
server_name localhost;
|
||||||
|
|
||||||
location /waiters/ {
|
location /waiters/ {
|
||||||
proxy_pass http://waiter-service:4000/;
|
proxy_pass http://waiter:4000/;
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
@ -17,7 +17,7 @@ http {
|
|||||||
}
|
}
|
||||||
|
|
||||||
location /restaurants/ {
|
location /restaurants/ {
|
||||||
proxy_pass http://restaurant-service:8080/;
|
proxy_pass http://restaurant:8080/;
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
Loading…
Reference in New Issue
Block a user