fixed limmited

This commit is contained in:
2026-09-02 13:14:18 +03:00
parent 02c43072c4
commit f83b7efcf1
+6 -2
View File
@@ -3,6 +3,7 @@ server {
server_name _;
root /usr/share/nginx/html;
index index.html;
client_max_body_size 2g;
location /api/ {
proxy_pass http://api:8000/api/;
@@ -10,8 +11,11 @@ server {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 512m;
proxy_read_timeout 300s;
proxy_connect_timeout 600s;
proxy_send_timeout 600s;
proxy_read_timeout 600s;
client_body_timeout 600s;
send_timeout 600s;
}
location /docs {