Closed anhgelus closed 1 year ago
By default WriteFreely will handle localhost:80 and not 0.0.0.0:80.
localhost:80
0.0.0.0:80
While WriteFreely is not handling 0.0.0.0, the request will not be handled.
0.0.0.0
This bug can be fixed by editing the file config.ini: change bind = localhost to bind = 0.0.0.0.
config.ini
bind = localhost
bind = 0.0.0.0
Fixed
By default WriteFreely will handle
localhost:80
and not0.0.0.0:80
.While WriteFreely is not handling
0.0.0.0
, the request will not be handled.This bug can be fixed by editing the file
config.ini
: changebind = localhost
tobind = 0.0.0.0
.