iHost and node-red-contrib-amazon-echo using the same port

I’m using the node-red-contrib-amazon-echo node for the purpose of receiving voice commands from Alexa. In the following example, when asking Alexa to identify new devices, no new devices are recognized. However, Amazon Echo Hub uses port 80 to function, but from what I understand iHost is using that port and for this reason, I believe it prevents the node from functioning.

Any suggestions here? Would it be to determine another port for iHost?

amazon-echo-hub

amazon-echo-hub node

Looking in more detail, port 80 is indeed a requirement. However, this port is assigned to iHost.

node-red-contrib-amazon-echo

On GitHub there is a workaround, but there is no console/terminal to run the command lines.

Troubleshooting

sudo iptables -I INPUT 1 -p tcp --dport 80 -j ACCEPT
sudo iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8080

Any solutions to resolve this situation?