initial version
This commit is contained in:
17
nginx.conf
Normal file
17
nginx.conf
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user