IIS サーバーを使用して Windows Azure にデプロイされた Node.js アプリケーションiisnode
- node.js アプリケーションのホスティングを可能にするネイティブ IIS モジュール。
web.config
たとえば
、メインアプリケーションファイルであるファイルを指定できます
<configuration>
<system.webServer>
<!-- // configure your node.js application file here -->
<handlers>
<add name="iisnode" path="your_application_file.js" verb="*" modules="iisnode" />
</handlers>
<!-- ... // other configuration parameters .... -->
<system.webServer>
<configuration>
Tomasz Janczuk ( iisnode作成者)のブログで、さらに多くの例 (URL の書き換えなどを含む) を見つけることができます。
それが助けになるか、正しい道順を教えてくれることを願っています。