Browse Source

修改dockerfile配置和logo

zq940222 2 months ago
parent
commit
af93fb739b
2 changed files with 18 additions and 2 deletions
  1. 2 2
      Dockerfile
  2. 16 0
      config/index.js

+ 2 - 2
Dockerfile

@@ -1,6 +1,6 @@
 FROM docker.m.daocloud.io/library/nginx:1.19
 
 COPY ./dist /usr/share/nginx/html
-COPY./docker/conf/nginx/nginx.conf /etc/nginx/nginx.conf
-COPY./docker/conf/nginx/conf.d/wkcrm.conf /etc/nginx/conf.d/wkcrm.conf
+COPY ./docker/conf/nginx/nginx.conf /etc/nginx/nginx.conf
+COPY ./docker/conf/nginx/conf.d/wkcrm.conf /etc/nginx/conf.d/wkcrm.conf
 CMD ["nginx","-g","daemon off;"]

+ 16 - 0
config/index.js

@@ -58,6 +58,22 @@ module.exports = {
   },
 
   build: {
+    proxyTable: {
+      '/api': {
+        target: 'http://127.0.0.1:8443/',
+        changeOrigin: true,
+        pathRewrite: {
+          '^/api': ''
+        }
+      },
+      '/file': {
+        target: 'http://127.0.0.1:8012/',
+        changeOrigin: true,
+        pathRewrite: {
+          '^/file': ''
+        }
+      }
+    },
     // Template for index.html
     index: path.resolve(__dirname, '../dist/index.html'),