diff --git a/balakhonov_danila_lab_3/docker-compose.yaml b/balakhonov_danila_lab_3/docker-compose.yaml index 94f2127..cffaa51 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: - - 6666 + - 5089 depends_on: - waiter-service @@ -14,7 +14,6 @@ services: PORT: 4000 expose: - 4000 - nginx: image: nginx diff --git a/balakhonov_danila_lab_3/nginx.conf b/balakhonov_danila_lab_3/nginx.conf index bdb46d0..6580d1c 100644 --- a/balakhonov_danila_lab_3/nginx.conf +++ b/balakhonov_danila_lab_3/nginx.conf @@ -1,7 +1,7 @@ server { listen 80; listen [::]:80; - server_name restawaiters; + server_name localhost; location /waiters/ { proxy_pass http://waiter-service:4000/; @@ -12,7 +12,7 @@ server { } location /restaurants/ { - proxy_pass http://restaurant-service:6666/; + proxy_pass http://restaurant-service:5089/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Proto $scheme;