liuchen864
7 months ago
7 changed files with 104 additions and 15 deletions
@ -0,0 +1,12 @@ |
|||||
|
# 页面标题 |
||||
|
VITE_APP_TITLE = QAD对外接口 |
||||
|
|
||||
|
# 生产环境配置 |
||||
|
VITE_APP_ENV = 'test' |
||||
|
|
||||
|
# 若依管理系统/生产环境 |
||||
|
VITE_APP_BASE_API = 'http://172.21.32.11:23111/api' |
||||
|
VITE_APP_BASE_API_IMAGE = 'http://172.21.32.11:23111' |
||||
|
|
||||
|
# 是否在打包时开启压缩,支持 gzip 和 brotli |
||||
|
VITE_BUILD_COMPRESS = gzip |
@ -0,0 +1,12 @@ |
|||||
|
# 页面标题 |
||||
|
VITE_APP_TITLE = QAD对外接口 |
||||
|
|
||||
|
# 生产环境配置 |
||||
|
VITE_APP_ENV = 'test' |
||||
|
|
||||
|
# 若依管理系统/生产环境 |
||||
|
VITE_APP_BASE_API = 'http://172.21.32.12:23111/api' |
||||
|
VITE_APP_BASE_API_IMAGE = 'http://172.21.32.12:23111' |
||||
|
|
||||
|
# 是否在打包时开启压缩,支持 gzip 和 brotli |
||||
|
VITE_BUILD_COMPRESS = gzip |
@ -1,12 +0,0 @@ |
|||||
# 页面标题 |
|
||||
VITE_APP_TITLE = 鸿翔TMS |
|
||||
|
|
||||
# 生产环境配置 |
|
||||
VITE_APP_ENV = 'production' |
|
||||
|
|
||||
# 若依管理系统/生产环境 |
|
||||
VITE_APP_BASE_API = 'https://tmsdata.hongxianggroup.com.cn' |
|
||||
VITE_APP_BASE_API_IMAGE = 'https://tms.hongxianggroup.com.cn' |
|
||||
|
|
||||
# 是否在打包时开启压缩,支持 gzip 和 brotli |
|
||||
VITE_BUILD_COMPRESS = gzip |
|
@ -0,0 +1,7 @@ |
|||||
|
# 设置基础镜像 |
||||
|
FROM win-nginx |
||||
|
|
||||
|
WORKDIR /opt/qad |
||||
|
COPY nginx.conf /usr/local/nginx/conf/nginx.conf |
||||
|
# 将dist文件中的内容复制到 /opt/sfms3.0 这个目录下面 |
||||
|
COPY dist/ /opt/qad |
@ -0,0 +1,69 @@ |
|||||
|
user root; |
||||
|
worker_processes 2; |
||||
|
|
||||
|
#error_log logs/error.log; |
||||
|
#error_log logs/error.log notice; |
||||
|
#error_log logs/error.log info; |
||||
|
|
||||
|
#pid logs/nginx.pid; |
||||
|
|
||||
|
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 data-manager { |
||||
|
server localhost:23112 weight=10 max_fails=3 fail_timeout=10s; |
||||
|
} |
||||
|
server { |
||||
|
listen 23111; |
||||
|
server_name_in_redirect off; |
||||
|
server_name _; |
||||
|
access_log logs/tms.log main; |
||||
|
location /api/ { |
||||
|
access_log logs/tms-manager.log main; |
||||
|
proxy_pass http://data-manager/; |
||||
|
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/uploadPath/; |
||||
|
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/qad; |
||||
|
index index.html index.htm; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
Loading…
Reference in new issue