When we launch a newly created Dancer2 application it will listen on every interface of the computer. So anyone on the network will be able to access it. This can be good for a production server, but it is quite insecure as a development practice. Wouldn't it be more secure to allow only 127.0.0.1 by default and make it easy to allow other interfaces as well?

What do you think?

Gabor