iisnode模块无法启动node.exe进程

Lea*_*mil 4 iis node.js iisnode

嗨,我尝试在IIS上运行节点作为现有网站的子目录.

https:// somewebsite/node就像这样

  1. 下载并安装到windows机器https://github.com/azure/iisnode/wiki/iisnode-releases

它可以工作,但当我去一个特定的js文件时,我收到了这条消息,不知道该怎么做.

iisnode模块无法启动node.exe进程.确保node.exe可执行文件在web.config的system.webServer/iisnode/@nodeProcessCommandLine元素中指定的位置可用.默认情况下,在PATH环境变量中列出的某个目录中需要node.exe.

Lea*_*mil 10

在web.config文件中添加了以下代码,它可以正常工作!

<iisnode nodeProcessCommandLine="C:\Program Files\nodejs\node.exe" />
Run Code Online (Sandbox Code Playgroud)