It is not common or well-supported to run node directly from Apache. There are some attempts at a mod_node module that would allow this, but it doesn't look like the development has gotten very far. You can run Apache as a proxy to node, but that doesn't make a lot of sense from a performance standpoint due to the difference in models (node uses an event-driven model like nginx; apache uses a more traditional one-thread-per-request model).
It is a lot more common to run node behind nginx -- you'll find a lot more people are doing this and there is a lot more help and tutorials available online. There are more details and links regarding running node with apache on this thread: https://groups.google.com/forum/#!searchin/nodejs/PHP$20mod_node/nodejs/0WJ0lau1xy4/qInWGaQw7jkJ -- peter -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
