DAS_2024_1/aleikin_artem_lab_3/nginx/nginx.conf

18 lines
517 B
Nginx Configuration File
Raw Normal View History

2024-11-19 15:20:55 +04:00
server {
listen 80;
server_name localhost;
location /projectservice/ {
proxy_pass http://projectservice:5001/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /taskservice/ {
proxy_pass http://taskservice:5002/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
}
}