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.