My Flood is not listen to my host ip #130
-
hey! I modified the config.js file to listen to my host ip address. But when i'll start the process still listen to 127.0.0.1 address. When i use the --host parameter it works fine Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
It is recommended to use CLI arguments. Static configuration is discouraged. It simply won't work unless you compiled Flood from sources. See Install Flood as a service (systemd). To add arguments, for example
instead of
If you use |
Beta Was this translation helpful? Give feedback.
It is recommended to use CLI arguments. Static configuration is discouraged. It simply won't work unless you compiled Flood from sources.
See Install Flood as a service (systemd).
To add arguments, for example
--host 0.0.0.0
, simply append toExecStart
:ExecStart=/usr/bin/flood --host 0.0.0.0
instead of
ExecStart=/usr/bin/flood
If you use
npm run start
, append arguments after--
. SeeREADME
.