I am looking to use lighttpd as a simple web server, to replace the even simpler one I am using now. I want to develop using an alternate port, switching to 80 when all is working correctly.
The problem is that I get:
My lighttpd.conf file contains:
So, why is it even looking at port 80? I grepped the file and found only the line above containing "80".
Any idea what I can do to get it to honor server.port?
The problem is that I get:
Code:
Starting lighttpd.
2014-07-18 12:07:17: (network.c.409) can't bind to port: 0.0.0.0 80 Address already in use
/usr/local/etc/rc.d/lighttpd: WARNING: failed to start lighttpd
My lighttpd.conf file contains:
Code:
server.port = 3880
So, why is it even looking at port 80? I grepped the file and found only the line above containing "80".
Any idea what I can do to get it to honor server.port?