DAS_2024_1/bondarenko_max_lab_3/nginx.conf

25 lines
385 B
Nginx Configuration File
Raw Normal View History

2024-11-25 02:10:37 +04:00
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;
}
}
}