install :
setup :
add your site to iis and map it to the folder of the website
add web.config file to the folder of the website
the web.config file will contain:
<configuration> <system.webServer> <handlers> <add name="iisnode" path="app.js" verb="*" modules="iisnode" /> </handlers> <rewrite> <rules> <rule name="myapp"> <match url="/*" /> <action type="Rewrite" url="app.js" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
if your start nodejs file is not app.js then change it