关于网页端和安卓端无法上传下载,但是pc客户端可以的问题

我使用docker 安装sefile ,安装完成后出现了如下情况,网页端和安卓端无法上传下载(网页端会报错: 网络错误 重新上传),只能看到有文件,或者网页上预览。windows下使用同步盘可以正常上传下载(不过很神奇的是seafile-tutorial,这个seafile自带的说明偶尔不能正常上传)。因为同步盘可以使用所以我觉得数据库和seafile本身应该没什么问题了,我目前为seafile开放了 8000、8082、8020、3306、11211、12230(原来要求的80)SERVICE_URL :http://10.0.0.153/:8000 FILE_SERVER_ROOT :http://10.0.0.153/:8082 。请问是不是还有端口没有放行?谢谢。
对了,下载页面显示如下:

Not Found

The requested URL was not found on this server.

Apache/2.4.54 (Debian) Server at 10.0.0.153 Port 80

docker的端口是8000和8082 吗?

是的,这两个没变

现在的docker compose 没有让映射 8000和8082端口

seafile:
image: seafileltd/seafile-mc:latest
container_name: seafile
ports:
- “80:80”

- “443:443” # If https is enabled, cancel the comment.

volumes:
  - /opt/seafile-data:/shared   # Requested, specifies the path to Seafile data persistent store.
environment:

感谢,我回去又查了一遍8000和8082端口然后发现8000端口docker portainer正在使用 :rofl:,我把这个给忘了,紧接着我把8000端口释放出来依旧不行,我就尝试把8000和8082端口映射到别的端口上去,然后发现这次行了 :joy:
不过现在仍然有个问题,8082端口我通过 lsof -i:8082 并没有被占用,但就是不能直接使用。。。也不知道到底咋回事。。。
总之非常感谢您的提醒。