DAS_2024_1/afanasev_dmitry_lab_3/nginx.conf

19 lines
326 B
Nginx Configuration File

events {
worker_connections 1024;
}
http {
server {
listen 80;
listen [::]:80;
server_name localhost;
location /melon/ {
proxy_pass http://melon:8080/;
}
location /water/ {
proxy_pass http://water:8081/;
}
}
}