diff --git a/balakhonov_danila_lab_3/docker-compose.yaml b/balakhonov_danila_lab_3/docker-compose.yaml index cffaa51..4763734 100644 --- a/balakhonov_danila_lab_3/docker-compose.yaml +++ b/balakhonov_danila_lab_3/docker-compose.yaml @@ -4,7 +4,7 @@ services: environment: WAITER_API_URL: http://waiter-service:4000 expose: - - 5089 + - 8080 depends_on: - waiter-service diff --git a/balakhonov_danila_lab_3/nginx.conf b/balakhonov_danila_lab_3/nginx.conf index 2a816c2..70ef564 100644 --- a/balakhonov_danila_lab_3/nginx.conf +++ b/balakhonov_danila_lab_3/nginx.conf @@ -17,7 +17,7 @@ http { } location /restaurants/ { - proxy_pass http://restaurant-service:5089/; + proxy_pass http://restaurant-service:8080/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Proto $scheme;