Browser upload of large file not stable "access token not found"

Hi there,
I have a Seafile Docker installation on Ubuntu Server behind an Nginx reverse proxy. Unfortunately when uploading very large files (120GB) from Chrome every 20 Gig I get an error “access token not found”. I can restart the upload though and it will resume from there. Nevertheless uncool behaviour.
I run
Ubuntu 20.04.5
Seafile 9.0.9
Nginx 1.18.0
Within Nginx I already adjusted

proxy_request_buffering off;
proxy_buffering off;
client_max_body_size 0;

Thanks for your help!

hi
this value must be modified (in seconds) in the seafile.conf file

#Set uploading time limit to 3600s 
web_token_expire_time= 86400

and also the gunicorn.conf.py file

# for file upload, we need a longer timeout value (default is only 30s, too short)
timeout = 86400

Thanks, sounds like what I was looking for!

Btw - after finally uploading the file I got after indexing: internal error

That one was not fixable. So the upload failed in the end. Not so sure this is also due to the time limit. I’ll have a try though.