DAS_2024_1/kadyrov_aydar_lab_3/nginx/nginx.conf
2024-10-25 01:10:46 +04:00

12 lines
175 B
Nginx Configuration File

server {
listen 80;
location /heroes {
proxy_pass http://hero_service:5000;
}
location /items {
proxy_pass http://item_service:5001;
}
}