I’m looking to run node.js under IIS6 ( corporate environment, they are dead set on staying on IIS6 ). I’ve seen iisnode but it requires iis7.
My question is this: Is there an ISAPI redirect that can be used to connect IIS6 with node.js?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
We actually ended up doing the reverse and put IIS behind nodejs via node-http-proxy.
There are a number of benefits to doing this. For example IIS does not support web sockets, putting nodejs in front fixes this.
The only thing that you loose from node-iis is the process management, but there are plenty of alternative ways to get your node app running reliably as a service.