18 lines
285 B
Nginx Configuration File
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;
|
|
}
|
|
}
|