25 lines
385 B
Nginx Configuration File
25 lines
385 B
Nginx Configuration File
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
upstream authors_service {
|
||
|
server authors:3000;
|
||
|
}
|
||
|
|
||
|
upstream books_service {
|
||
|
server books:3001;
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
listen 80;
|
||
|
|
||
|
location /authors {
|
||
|
proxy_pass http://authors_service;
|
||
|
}
|
||
|
|
||
|
location /books {
|
||
|
proxy_pass http://books_service;
|
||
|
}
|
||
|
}
|
||
|
}
|