40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
client_max_body_size 64m; # 最大上传文件大小!
|
|
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
gzip on;
|
|
gzip_static on; # 需要http_gzip_static_module 模块
|
|
gzip_min_length 1k;
|
|
gzip_comp_level 4;
|
|
gzip_proxied any;
|
|
gzip_types text/plain text/xml text/css;
|
|
gzip_vary on;
|
|
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
|
|
|
|
# 前端打包好的dist目录文件
|
|
root /data/main/;
|
|
|
|
location / {
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
if ($request_filename ~ .*\.(htm|html)$) {
|
|
add_header Cache-Control no-store;
|
|
}
|
|
}
|
|
|
|
location ^~/api/ {
|
|
proxy_pass http://honeycom-gateway:9999/; #注意/后缀
|
|
proxy_connect_timeout 60s;
|
|
proxy_read_timeout 120s;
|
|
proxy_send_timeout 120s;
|
|
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 http;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_set_header Host $http_host;
|
|
}
|
|
} |