I seem to have a bit of a hard time getting access to 0.8.2e on my raspi.
It seems to running ok, but I don't know how to access the browser interface.
Neither http nor https on any of the ports gets me access.
[2014-02-26 13:02:23.747] Started peer networking server at 0.0.0.0:7874
[2014-02-26 13:02:23.820] Started API server at 127.0.0.1:7876
[2014-02-26 13:02:23.861] Started user interface server at 127.0.0.1:7875
[2014-02-26 13:02:23.901] Nxt server 0.8.2e started successfully.
Maybe I have to modify the ncxt/conf/nxt-default.properties ? I have tried a few possible entries, but apart from the obvious ones, I have no idea:
nxt.allowedBotHosts=127.0.0.1; localhost; 192.168.178.25; 192.168.178.26; 0:0:0:0:0:0:0:1;
nxt.allowedUserHosts=127.0.0.1; localhost; 192.168.178.25; 192.168.178.26; 0:0:0:0:0:0:0:1;
As the start script is:
java -Xmx128M -Xmx450M -cp nxt.jar:lib/*:conf nxt.Nxt
Do I maybe have to give an extra reference to the nxt-default.properties?
In properties ### PEER NETWORKING" try:
nxt.peerServerHost=0.0.0.0
### API SERVER###
nxt.apiServerHost=0.0.0.0
nxt.allowedBotHosts=*
### NRS USER INTERFACE ###
nxt.allowedUserHosts=*
nxt.uiServerHost=0.0.0.0
Not sure about PEER NETWORKING settings, but API and NRS should work.