еще разок

This commit is contained in:
mfnefd 2024-11-03 20:30:29 +04:00
parent 4fc879212e
commit 74e61987dc
2 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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;