Former-commit-id: ab35c9ccafea6970ec3e7c8781fa3b37c249e7c6
Former-commit-id: 7d87adf33f0a3ff9ce9b67eac6e9ecc2c7ae5c1b
TangShanKaiPing
wanggang 5 years ago
parent 819ddd029d
commit b44db23b09

@ -0,0 +1,7 @@
namespace IoTCenter.ViewModels
{
public class QueryRequest
{
public string Query { get; set; }
}
}

@ -49,6 +49,10 @@ http {
proxy_pass http://localhost:8080/video/;
}
location ^~ /influxdb/ {
proxy_pass http://localhost:8086/;
}
location ^~ /UserCenter/ {
proxy_pass http://localhost:8010/UserCenter/;
}

@ -43,6 +43,10 @@ http {
proxy_pass http://172.172.0.60:8080/video/;
}
location ^~ /influxdb/ {
proxy_pass http://172.172.0.50:8086/;
}
location ^~ /UserCenter/ {
proxy_pass http://172.172.0.70/UserCenter/;
}

@ -43,6 +43,10 @@ http {
proxy_pass http://host.docker.internal:8080/video/;
}
location ^~ /influxdb/ {
proxy_pass http://host.docker.internal:8086/;
}
location ^~ /UserCenter/ {
proxy_pass http://host.docker.internal:8010/UserCenter/;
}

Loading…
Cancel
Save