initial version

This commit is contained in:
2026-03-31 18:53:02 +04:00
commit dec08d5809
4 changed files with 948 additions and 0 deletions

17
nginx.conf Normal file
View File

@@ -0,0 +1,17 @@
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;
}
}