Apache creates a new Thread for each request or more accurately, it re-uses a Thread from a pool of Threads but Node.js is essentially a single Thread. Would there be any complication in running a Node.js web app behind an Apache webserver? For example, can I have the following configuration?
http://mywebsite.com/wordpress <-- mod_php
http://mywebsite.com/bugzilla <-- mod_perl
http://mywebsite.com <-- points to the Node.js app
Is there any officially supported Apache plugin for Node.js?
What is the best way to implement this topology?