Startup responds isomorphically to iis

I am trying to work using node.js with iisnode on iis

I installed the last node and the last iisnode and used this stackoverflow as a guide, but can't get the 500 error. How to start the node.JS server for a web application?

any guides on how to do this on iis?

+7
iis reactjs isomorphic-javascript iisnode
source share
1 answer

This is not a direct answer, but an alternative. You can use the IIS reverse proxy plugin and simply cancel the VirtualServer proxy server or subfolder on the virtual server on your NodeJS server.

If you need multiple processes, you can use Node's built-in clustering

Here are two ways to do it:

0
source share

All Articles