Newly installed Seafile on Ubuntu 18.04
I can access seahub from localhost, but I cannot access it over LAN by entering the server’s IP address.
I did some investigating and it seems that something is not configured right, but I do not know where.
This is what I see:
`sudo lsof -i -P -n |grep 8000
python2.7 5823 7u IPv4 83452 0t0 TCP 127.0.0.1:8000 (LISTEN)
python2.7 5829 7u IPv4 83452 0t0 TCP 127.0.0.1:8000 (LISTEN)
python2.7 5830 7u IPv4 83452 0t0 TCP 127.0.0.1:8000 (LISTEN)
python2.7 5831 7u IPv4 83452 0t0 TCP 127.0.0.1:8000 (LISTEN)
python2.7 5832 7u IPv4 83452 0t0 TCP 127.0.0.1:8000 (LISTEN)
python2.7 5833 7u IPv4 83452 0t0 TCP 127.0.0.1:8000 (LISTEN)
`
Python 2.7 runtime binds only to localhost, not to 0.0.0.0 so there is no access to seahub from outside. How can I tell seahub to listen to 0.0.0.0:8000?
V.