feat(nginx): configure client max body size and update timeouts for API proxy
Deployment Config CI / Deployment Config (push) Successful in 15s
Frontend CI / Frontend (push) Successful in 2m16s

feat(clipboard): implement copyTextToClipboard utility function
feat(desktop): add upload timeout for desktop client release API
feat(k3s): add nginx config and update kustomization for ops-web
This commit is contained in:
2026-05-31 15:01:14 +08:00
parent 9dfc3746c3
commit de9c52be6d
7 changed files with 130 additions and 7 deletions
+3 -2
View File
@@ -8,6 +8,7 @@ real_ip_recursive on;
server {
listen 80;
server_name _;
client_max_body_size 600M;
root /usr/share/nginx/html;
index index.html;
@@ -30,8 +31,8 @@ server {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 120s;
proxy_send_timeout 120s;
proxy_read_timeout 900s;
proxy_send_timeout 900s;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff2?)$ {