forked from Alexey/DAS_2024_1
19 lines
326 B
Nginx Configuration File
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/;
|
|
}
|
|
}
|
|
} |