Closed noraj closed 7 years ago
If you're trying to access to flood directly via yourdomain:3000 without proxying flood with nginx or so this is a normal behavior. floodServerHost: '127.0.0.1'
tells node to listen only on the loopback address but you want to reach it via the distant address of your server. Thus you can change it to floodServerHost: '0.0.0.0'
, that way you will be able to reach flood on any network interface or you can setup your webserver to proxy the connection from a vhost to flood.
I hope this helped you a bit and sorry if I was messy.
And this is why we need https://github.com/jfurrow/flood/issues/259 with semver versioning for breaking changes like this 😢
Ahh shit, sorry, I didn't think about that... sorry @noraj1337 for the confusion and lack of changelog or versioning to warn you of this.
I'll close this issue as the problem is resolved, but thanks for bringing it to my attention.
@blacksponge : you're right, I'm not proxying it.
@wopian : yes floodServerHost
that was not clear that was a listen address and there is no changelog or doc so...
@jfurrow you're welcome, you do very good job but #259 seems to be a number 1 priority.
I updated flood (following the README), and after the update flood was not reachable anymore.
(my domain name is still reachable, rTorrent working, I can access to him with ruTorrent, only flood is not working).
I have no error or warnings, no logs, status ok but it's just not running (was fine before updating).
I tried with Firefox and Vivaldi, both show error 102
ERR_CONNECTION_REFUSED
.I'm confused because flood doesn't give me logs.
The only config I changed is: I added
floodServerHost: '127.0.0.1',
in myconfig.js
because it was added in the template since my last update.