What is it that keeping port 80 busy for you? If you are not using it for your application, why not kill the task and leave WFA to continue using port 80.
First find out what is that: In a command prompt run :
netstat -ano |findstr /I LISTENING|findstr 80
The left most column will give the PID, use taskkill command to kill it.
If this post resolved your issue, help others by selecting ACCEPT AS SOLUTION or adding a KUDO.