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