从子文件夹中提供Express.JS应用程序

时间:2014-02-25 22:28:05

标签: node.js nginx express

我使用nginx在同一个域下提供静态html网站和expressjs应用。我的nginx配置如下所示:

    location / {
            try_files $uri $uri/ /index.html;
            autoindex  off;
            root /var/www/example.com/static/;
    }

    location /admin {
            proxy_pass http://localhost:3007/;
            proxy_set_header Host $host;
            proxy_buffering off;
            autoindex  off;
    }

如果我访问example.com/admin,我可以访问在端口3007上运行的应用程序,这样我的app.get('/', routes.index);似乎正在运行,但是我遇到了一些问题,让我的其他路由无法运行。< / p>

例如:

app.get('/admin/test', function(req, res) {
    console.log("test!")
});

如果我尝试访问example.com/admin/test,我会根据我的日志看到Cannot GET //test和404:

GET //test 404 11ms

如果我改变路线到/测试它是同样的问题。任何指针都有什么不对。我还没有找到一种方法来建立相对于它们所安装到的基本路径的路由(/ admin)。

谢谢!

2 个答案:

答案 0 :(得分:8)

记住斜线:

location /admin {
    proxy_pass http://localhost:3007/; # here
    …
}

如果删除它,将代理实际请求URI。

您还可以使用Nginx删除/admin部分:

location ~ ^/admin($|/.*$) {
    proxy_pass http://localhost:3007$1;
    …
}

答案 1 :(得分:0)

您仍然可以使用“/”(正斜杠)保留 Nginx 配置代码并使用 example.com/admin/test 访问测试路由。

app.get('//test', function(req, res) {
    console.log("test!")
});