lossless1024 / StreaMonitor

Adult live stream downloader for advanced people. I could have chosen a better name.
GNU General Public License v3.0
173 stars 42 forks source link

change http to 0.0.0.0 ? #78

Open aroundmyroom opened 1 year ago

aroundmyroom commented 1 year ago

httpmanager.py line 63 change from 127.0.0.1 to 0.0.0.0 so that it is available within your internal network otherwise you can only access it locally, but on a headless server it is no use ..

DerBunteBall commented 1 year ago

The whole network stuff has no authentication and security and so it's not a good idea to do so. Although it is only in the local network. But @lossless1024 would need to decide this.

I recommand to create an SSH Tunnel to use it on a working system e.g. like this:

ssh -L localhost:5000:localhost:5000 -fNC user@host

This creates an SSH Tunnel in background. Now you can use http://localhost:5000 on your desktop to view the remote system although the port is bound to localhost at the remote system. Same works for ZeroMQ. Traffic is encrypted by SSH.

aroundmyroom commented 1 year ago

ugh, for local use using a ssh tunnel is too much .. If it would be a configurable variable it would be even better (I do not ask to remove) ;)

Adsryen commented 11 months ago

希望添加0.0.0.0,部署在国外的windows服务器上,在外网不能通过ip+port访问,真的很麻烦!!