DAS_2024_1/kurushina_ksenia_lab_3/nginx/nginx.conf
2024-12-08 22:45:33 +04:00

22 lines
589 B
Nginx Configuration File

server {
listen 80;
location /books {
proxy_pass http://book_service:5000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
location /shelves {
proxy_pass http://shelf_service:5001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}