Bitcoin Forum

Bitcoin => Mining software (miners) => Topic started by: bomberb17 on March 10, 2015, 02:18:17 PM



Title: Spondoolies-Tech Web UI - change port
Post by: bomberb17 on March 10, 2015, 02:18:17 PM
Does anyone know where to change port for the miner's web interface page?
For example instead of typing
192.168.1.2 (http://192.168.1.2)
I would type something line
192.168.1.2:8080 (http://192.168.1.2:8080)



Title: Re: Spondoolies-Tech Web UI - change port
Post by: bomberb17 on March 10, 2015, 05:40:29 PM
Ok found it!
Code:
vi /etc/lighttpd/lighttpd.conf

then add

Code:
server.port = 8080


Title: Re: Spondoolies-Tech Web UI - change port
Post by: bomberb17 on March 10, 2015, 07:51:44 PM
Also if you want to change SSH port:
Code:
vi /etc/init.d/S50dropbear
and then change line from
Code:
start-stop-daemon -S -q -p /var/run/dropbear.pid --exec /usr/sbin/dropbear
to
Code:
start-stop-daemon -S -q -p /var/run/dropbear.pid --exec /usr/sbin/dropbear -- -p 1234
(change 1234 to your port choice)

I recommend this to avoid hacker attacks if you plan to control your miner from outside your LAN.