admin管理员组

文章数量:1391934

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?

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?

Share Improve this question asked Feb 6, 2012 at 14:21 Kummer WolfeKummer Wolfe 6035 silver badges13 bronze badges 2
  • 1 Might you be able to use Windows Azure to host your Node.js app instead? windowsazure./en-us/develop/nodejs – Well Actually Commented Feb 9, 2012 at 6:48
  • hmm.. maybe. I'll definitely give it a try! – Kummer Wolfe Commented Feb 9, 2012 at 13:19
Add a ment  | 

1 Answer 1

Reset to default 8

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.

本文标签: javascriptNodejs running under IIS6Stack Overflow