This commit is contained in:
hanjian
2024-09-02 20:59:57 +08:00
parent 6def8a39d3
commit fd7fc372a1
8 changed files with 18 additions and 10 deletions

View File

@@ -1 +1 @@
VUE_APP_BASE_EBPM_PATH = 'http://localhost:8085/ebpm-process-manage'
VUE_APP_BASE_EBPM_PATH = '/ebpm-process-manage'

View File

@@ -1 +1 @@
VUE_APP_BASE_EBPM_PATH = 'https://www.rzdata.net/ebpm-process-manage'
VUE_APP_BASE_EBPM_PATH = '/ebpm-process-manage'

View File

@@ -1 +1 @@
VUE_APP_BASE_EBPM_PATH = 'http://192.168.2.128:8080/ebpm-process-manage'
VUE_APP_BASE_EBPM_PATH = '/ebpm-process-manage'

View File

@@ -11,6 +11,14 @@ server {
try_files $uri $uri/ /index.html;
}
location ^~/ebpm-process-manage/ {
proxy_pass https://117.78.50.82:18081/ebpm-process-manage/;
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_ssl_verify off;
}
location ^~/ebpm-process-modeler {
alias /usr/share/nginx/html/ebpm-process-modeler;
index index.html index.htm;