8

我正在用 node.js + express 和 iisnode 做一些实验。我有以下非常简单的应用程序,位于C:\tsapp-deploy\tsappsvr\TestExpress\0.0.0

应用程序.js:

var express = require('express');
var app = express();
app.use(express.static(__dirname + "/public"));

var port = process.env.PORT || 2709;
app.listen(port, function() {
  console.log('Listening on port ' + port);
});

包.json:

{
  "name": "TestExpress",
  "version": "0.0.0",
  "private": true,
  "dependencies": {
    "express": "3.x"
  }
}

网络配置:

<configuration>
  <system.webServer>
    <handlers>
      <add name="iisnode" path="app.js" verb="*" modules="iisnode" />
    </handlers>
  </system.webServer>
</configuration>

公共/index.html:

<!doctype html>
<html>
<head>
  <script language="javascript" type="text/javascript" src="js/jquery.js"></script>
  <script language="javascript" type="text/javascript">
    $(document).ready(function() {
      console.log("READY!");
      $("#hello").html("Hello, World!");
    });
  </script>
</head>
<body>
  <h1 id="hello" style="text-align:center;"></h1>
</body>
</html>

我的配置是:Windows 8.1、IIS 8;iisnode 版本 0.2.11,节点版本 v0.10.28。

从命令行 ( C:\tsapp-deploy\tsappsvr\TestExpress\0.0.0>node app.js) 启动时,应用程序按预期运行:在浏览器中,我转到http://localhost:2709/“Hello, World!”。

我的 IIS 当前正在运行其他基于 node.js 的应用程序,而不是使用来自类似位置(即 from C:\tsapp-deploy\tsappsvr\appname\x.y.z\index.js)的 express,所以我认为它应该正确配置,但是当我尝试从浏览器运行这个应用程序时,输入http://localhost/tsappsvr/TestExpress/0.0.0/app.js我得到 404 Not在 Chrome 和 Firefox 中找到(在 IE 中)或“无法获取 /tsappsvr/TestExpress/0.0.0/app.js”。

我想问题可能出在我的 web.config 中,但我不知道如何更改它以使我的应用程序正常工作。按照类似问题的其他答案中的建议,我已经尝试了对 web.config 的一些更改,但还没有成功。有什么建议么?

提前致谢。

4

2 回答 2

15

我想我已经找到了解决问题的方法:

  • 首先,我安装了 url-rewrite 扩展,再次感谢 David。
  • 其次,我改变了我的 web.config 如下:

网络配置:

<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>
  <appSettings>
    <add key="deployPath" value="/tsappsvr/TestExpress/0.0.0" />
  </appSettings>
</configuration>

请注意部分中的deployPathappSettings,其值设置为应用程序的虚拟路径(在 IIS 中设置)。就我而言,它是/tsappsvr/TestExpress/0.0.0

  • 最后,我的 app.js 现在如下:

应用程序.js:

// Preamble, so to say
var express = require('express');
var http = require('http');
var app = express();

// Variable deployPath is set in web.config and must match
// the path of app.js in virtual directory.
// If app.js is run from command line:
//   "C:/tssapp-deploy/tsappsvr/TestExpress/0.0.0> node app.js"
// deployPath is set to empty string.
var deployPath = process.env.deployPath || "";

// Static content server
app.use(deployPath + "/pages", express.static(__dirname + '/public'));

// REST API handler (placeholder)
app.all(deployPath + "/api", function(req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.end("<h2>REST API Handler found.</h2>");
});

// Default handler
app.get(deployPath + "/", function(req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.end("<h2>Default Handler found.</h2>");
});

// Not Found handler
app.use(function(req, res, next){
  res.writeHead(404, {'Content-Type': 'text/html'});
  res.write("<h2>The requested resource is not available.</h2>");
  res.write("Request received on port " + process.env.PORT + "<br>");
  res.write("Request URL: " + req.url + "<br>");
  res.write("Deploy Path: " + deployPath + "<br>");
  res.end('[iisnode version is ' + process.env.IISNODE_VERSION + ', node version is ' + process.version + ']');
});

// Server creation
var server = http.createServer(app);
var port = process.env.PORT || 2709;
server.listen(port);

变量deployPath用作所有处理程序的前缀(“未找到”处理程序除外)。当 app.js 从 iisnode 启动时, deployPath 它是 的一部分process.env,而如果 app.js 从命令行启动(例如C:/tsapp-deploy/tsappsvr/TestExpress/0.0.0>node app.js),则它是未定义的。这确保了 app.js 在这两种情况下都能正常工作。

现在,http://localhost/tsappsvr/TestExpress/0.0.0/在浏览器中输入我会触发默认处理程序;附加/pages到以前的 URL 我可以访问静态内容,而附加/api我会触发 REST API 处理程序。http://localhost:2709/基本 URL也是如此。

于 2014-06-16T09:10:18.350 回答
4

Eric,你安装了url-rewrite 扩展吗?

这是我在 web.config 中的配置:

<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>
于 2014-06-09T18:54:07.297 回答