Files
converter_nginx/nginx.conf
2026-03-31 18:53:02 +04:00

18 lines
285 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
location /uc/ {
proxy_pass http://10.100.10.70:9999;
}
location /app/ {
proxy_pass http://10.100.11.188:8901;
}
}