|
@@ -58,4 +58,82 @@
|
|
|
+ 1、数据服务 代理 /defdata(如果不通过模板域名访问可不配置)
|
|
|
+ 2、后台数据 代理 /htdata(如果不通过模板域名访问可不配置)
|
|
|
* 4、后台数据 代理 /htdata
|
|
|
-* 5、配置穿透域名 lldp lldpscreen
|
|
|
+* 5、配置穿透域名 lldp lldpscreen
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+# nginx 反向代理配置
|
|
|
+
|
|
|
+ location /htdata/
|
|
|
+ {
|
|
|
+ proxy_pass http://127.0.0.1:8104/;
|
|
|
+ proxy_set_header Host $host;
|
|
|
+ proxy_set_header X-Real-IP $remote_addr;
|
|
|
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
+ proxy_set_header REMOTE-HOST $remote_addr;
|
|
|
+
|
|
|
+ add_header X-Cache $upstream_cache_status;
|
|
|
+
|
|
|
+ #Set Nginx Cache
|
|
|
+
|
|
|
+ add_header Cache-Control no-cache;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ #PROXY-START/screen
|
|
|
+
|
|
|
+ location /screen/
|
|
|
+ {
|
|
|
+ proxy_pass http://127.0.0.1/;
|
|
|
+ proxy_set_header Host gzqlyxbight.hongweisoft.com;
|
|
|
+ proxy_set_header X-Real-IP $remote_addr;
|
|
|
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
+ proxy_set_header REMOTE-HOST $remote_addr;
|
|
|
+
|
|
|
+ add_header X-Cache $upstream_cache_status;
|
|
|
+
|
|
|
+ #Set Nginx Cache
|
|
|
+
|
|
|
+ add_header Cache-Control no-cache;
|
|
|
+ }
|
|
|
+
|
|
|
+ #PROXY-END/screen
|
|
|
+
|
|
|
+
|
|
|
+ #PROXY-START/amapData
|
|
|
+
|
|
|
+ location /amapData/
|
|
|
+ {
|
|
|
+ proxy_pass http://restapi.amap.com/;
|
|
|
+ proxy_set_header Host restapi.amap.com;
|
|
|
+ proxy_set_header X-Real-IP $remote_addr;
|
|
|
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
+ proxy_set_header REMOTE-HOST $remote_addr;
|
|
|
+
|
|
|
+ add_header X-Cache $upstream_cache_status;
|
|
|
+
|
|
|
+ #Set Nginx Cache
|
|
|
+
|
|
|
+ add_header Cache-Control no-cache;
|
|
|
+ }
|
|
|
+
|
|
|
+ #PROXY-END/amapData
|
|
|
+
|
|
|
+ #PROXY-START/forest-admin
|
|
|
+
|
|
|
+ location /forest-admin/
|
|
|
+ {
|
|
|
+ proxy_pass http://127.0.0.1:9099/;
|
|
|
+ proxy_set_header Host $host;
|
|
|
+ proxy_set_header X-Real-IP $remote_addr;
|
|
|
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
+ proxy_set_header REMOTE-HOST $remote_addr;
|
|
|
+
|
|
|
+ add_header X-Cache $upstream_cache_status;
|
|
|
+
|
|
|
+ #Set Nginx Cache
|
|
|
+
|
|
|
+ add_header Cache-Control no-cache;
|
|
|
+ }
|
|
|
+
|
|
|
+#PROXY-END/forest-admin
|