DAS_2024_1/alkin_ivan_lab_3/nginx/nginx.conf

12 lines
175 B
Nginx Configuration File
Raw Normal View History

2024-12-12 22:44:53 +04:00
server {
listen 80;
location /heroes {
proxy_pass http://hero_service:5000;
}
location /items {
proxy_pass http://item_service:5001;
}
}