I'd like to use node.js to add basic functionality to a static site:
- user authentication and permissions
- basic content management (archiving, tags, search)
The examples at nodejs.org show how to start a server, written in JS, but coding an entire http server seems to be an overkill, and definitely doesn't strike me as a very secure solution. Is this really necessary when a standard web server can be used?
What would be the most straightforward way of integrating node.js code behind a server like nginx?