Configuration

from blog Casey Rodarmor's Blog, | ↗ original
Conventional software configuration is backwards. If you want an HTTP server to listen on port 80 and serve some directory full of files, you tell the service to bind to port 80 and pass it the path of the files to serve: $ http-server --port 80 --files /srv/www Serving `/srv/www` via HTTP on port 80. This is backwards. Let's call this kind of...