我正在使用iisnode。在同一台服务器上,我需要为不同的网站运行不同版本的节点。我在服务器上安装了nvm。如何告诉iisnode我想为每个站点启动哪个版本的节点?
答案 0 :(得分:1)
您需要向web.config添加一个nodeProcessCommandLine条目,该条目指向您要使用的特定node.exe文件:
<configuration>
...
<system.webServer>
...
<iisnode nodeProcessCommandLine="C:\Users\Administrator\AppData\Roaming\nvm\v6.9.2\node.exe" />
</system.webServer>
</configuration>