新上传
This commit is contained in:
83
deploy/default.conf
Normal file
83
deploy/default.conf
Normal file
@@ -0,0 +1,83 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
root /data/yunzhupaassoft/yunzhupaas-web-vue3;
|
||||
index index.html;
|
||||
|
||||
gzip on;
|
||||
gzip_static on;
|
||||
gzip_min_length 1k;
|
||||
gzip_comp_level 4;
|
||||
gzip_proxied any;
|
||||
gzip_types text/plain text/xml text/css;
|
||||
gzip_vary on;
|
||||
gzip_http_version 1.0;
|
||||
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
|
||||
|
||||
# YUNZHUPAAS-START
|
||||
# 设置上传文件的大小
|
||||
client_max_body_size 100m;
|
||||
|
||||
# 添加头部信息
|
||||
proxy_set_header Host $http_host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-NginX-Proxy true;
|
||||
# This is necessary to pass the correct IP to be hashed
|
||||
real_ip_header X-Real-IP;
|
||||
proxy_connect_timeout 300;
|
||||
|
||||
# 前端主项目伪静态
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
|
||||
# 大屏伪静态
|
||||
location /DataV {
|
||||
try_files $uri $uri/ /DataV/index.html;
|
||||
}
|
||||
|
||||
# 报表伪静态
|
||||
location /Report/icons/{
|
||||
try_files $uri $uri/ /Report/icons/;
|
||||
}
|
||||
|
||||
# 后端服务
|
||||
location /api/ {
|
||||
proxy_pass http://yunzhupaas-java-boot-external.java-boot-v510:30000;
|
||||
}
|
||||
|
||||
location /websocket {
|
||||
proxy_pass http://yunzhupaas-java-boot-external.java-boot-v510:30000/api/message/websocket;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
proxy_read_timeout 600s;
|
||||
}
|
||||
|
||||
# 报表
|
||||
location /ReportServer/ {
|
||||
proxy_pass http://yunzhupaas-datareport-external.java-boot-v510:30007/;
|
||||
}
|
||||
|
||||
# 文件预览
|
||||
location /FileServer {
|
||||
proxy_pass http://yunzhupaas-file-preview-external.java-boot-v510:30090;
|
||||
}
|
||||
|
||||
location ~ /FileServer/*.*\.(js|css)?$ {
|
||||
proxy_pass http://yunzhupaas-file-preview-external.java-boot-v510:30090;
|
||||
}
|
||||
|
||||
# 流程引擎
|
||||
location /api/Flow {
|
||||
proxy_pass http://yunzhupaas-workflow-external.java-boot-v510:31000;
|
||||
}
|
||||
|
||||
# univer报表
|
||||
location /api/Report {
|
||||
proxy_pass http://yunzhupaas-java-datareport-univer-external.java-boot-v510:32000;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user