No upload via Webinterface for files greater then 1 MB no Reverse Proxy

Hi,
my Problem:
No upload via Webinterface for files greater then 1 MB (no Reverse Proxy). After upload files > 1MB the filesize is 0 Byte. Syncing with Seafileclient and download with webinterface is no problem.
Any help?

Server Ubuntu 20, Seafile 10.0.1

Greeting
Andreas

HI
did you configure “SERVICE_URL” and “FILE_SERVER_ROOT” in the administrator settings panel on the web interface?
If you are not using a proxy, here is an example configuration to adapt to your configuration:

SERVICE_URL: http://192.168.1.1:8000
FILE_SERVER_ROOT: http://192.168.1.1:8082

you also need to add this line to the seahub_settings.py file with the server ip:

ALLOWED_HOSTS = ['192.168.1.1']

and modify the “bind” in the gunicorn.conf.py file:

# default localhost:8000
bind= "0.0.0.0:8000"

and also the “host” in seafile.conf:

host= 0.0.0.0

after that you should be able to upload and download with Seafile from the web interface.

Thank you for your answer, but only files greater then 1MB are 0 Bytes after upload with web frontend (drag and drop). Using the seafile client or shared links , downloads… all is ok.

Andreas

Are Uploads via Seafile client of files greater then 1 MB possible?

Hi,
Yes.

use_go_fileserver = true results uploading error in web #2652
After removing
use_go_fileserver = true
in seafile.conf all is ok. :-((