12 lines
175 B
Nginx Configuration File
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;
|
||
|
}
|
||
|
}
|