diff --git a/.env.production b/.env.production index 40e5dd4..7b93ff4 100644 --- a/.env.production +++ b/.env.production @@ -31,7 +31,7 @@ VITE_SOURCEMAP=false VITE_BASE_PATH=/ # 输出路径 -VITE_OUT_DIR=dist-pro +VITE_OUT_DIR=zhucheng # 积木报表请求路径 # VITE_JMREPORT_BASE_URL='http://dev.ccwin-in.com:26110' diff --git a/.env.test b/.env.test index 23eb72d..2693866 100644 --- a/.env.test +++ b/.env.test @@ -4,10 +4,10 @@ NODE_ENV=test VITE_DEV=false # 请求路径 -VITE_BASE_URL='http://dev.ccwin-in.com:26110' +VITE_BASE_URL='http://dev.ccwin-in.com:26100/api' # 上传路径 -VITE_UPLOAD_URL='http://dev.ccwin-in.com:26110/api/infra/file/upload' +VITE_UPLOAD_URL='http://dev.ccwin-in.com:26100/api/infra/file/upload' # 接口前缀 VITE_API_BASEPATH= @@ -28,10 +28,10 @@ VITE_SOURCEMAP=false VITE_BASE_PATH=/ # 输出路径 -VITE_OUT_DIR=dist-test +VITE_OUT_DIR=zhucheng # 自定义接口路径 -VITE_INTERFACE_URL='http://dev.ccwin-in.com:26112/magic/web/index.html' +VITE_INTERFACE_URL='http://dev.ccwin-in.com:26110/magic/web/index.html' # 积木报表请求路径 -VITE_JMREPORT_BASE_URL='http://dev.ccwin-in.com:26112' +VITE_JMREPORT_BASE_URL='http://dev.ccwin-in.com:26110' diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4f719fc --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +# 设置基础镜像 +FROM nginx:WIN-1.25.3 + +WORKDIR /opt/zhucheng +COPY nginx.conf /usr/local/nginx/conf/nginx.conf +# 将dist文件中的内容复制到 /opt/zhucheng 这个目录下面 +COPY zhucheng/ /opt/zhucheng diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..539db9d --- /dev/null +++ b/nginx.conf @@ -0,0 +1,61 @@ +user root; +worker_processes 2; + +events { + worker_connections 1024; +} + +http { + include mime.types; + charset utf-8,gbk; + default_type application/octet-stream; + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for" "$request_time $upstream_response_time"'; + + proxy_cache_path /opt/nginx_cache/ levels=1:2 keys_zone=my_zone:10m inactive=300s max_size=5g; + access_log logs/access.log main; + sendfile on; + #tcp_nopush on; + keepalive_timeout 600s; + client_max_body_size 200m; + gzip on; + gzip_min_length 10k; + gzip_comp_level 9; + gzip_buffers 4 16k; + gzip_types text/plain application/javascript text/css application/xml text/javascript image/jpeg image/gif image/png; + gzip_vary on; + gzip_disable "MSIE [1-6]\."; + upstream zhucheng { + server localhost:26110 weight=10 max_fails=3 fail_timeout=10s; + } + server { + listen 26100; + server_name_in_redirect off; + server_name dev.ccwin-in.com; + location /api/ { + proxy_pass http://zhucheng/; + proxy_next_upstream http_500 http_502 http_503 http_504 error timeout invalid_header; + proxy_set_header X-Forwared-For $proxy_add_x_forwarded_for; + proxy_set_header Host $http_host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $http_x_forwarded_for; + } + location /profile/ { + proxy_cache my_zone; + proxy_cache_valid 200 304 12h; + proxy_cache_key $host$uri$is_args$args; + alias /opt/profile/; + index index.html index.htm; + } + location / { + proxy_cache my_zone; + proxy_cache_valid 200 304 12h; + proxy_cache_key $host$uri$is_args$args; + try_files $uri $uri/ /index.html; + root /opt/zhucheng; + index index.html index.htm; + } + } +} +