I'm using: node 0.6.19 npm 1.1.24 on Win7 pro and iis 7.
I have a folder named 'test' in iisnode/www/. In this folder I want to create a fresh nodejs-express-app.
what I did
with 'localhost:3000' all is fine.
get the web.config and set the handlers and rewrite rules
<handlers>
<add name="iisnode" path="app.js" verb="*" modules="iisnode" />
</handlers>
<rewrite>
<rules>
<rule name="express">
<match url="test/*" />
<action type="Rewrite" url="app.js" />
</rule>
</rules>
</rewrite>
I restartet the iis and get: "Cannot GET /node/test/app"
Where is my mistake? Can someone help me?
I'm not a master with the IIS.