Никита Чернышов 6abb0ee263 Chernyshov Nikita Lab3 is Ready
2024-12-13 15:11:06 +04:00

11 lines
177 B
Nginx Configuration File

server {
listen 80;
location /games {
proxy_pass http://games_service:5000;
}
location /genres {
proxy_pass http://genres_service:5001;
}
}