当前位置 : 主页 > 网页制作 > Nodejs >

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

来源:互联网 收集:自由互联 发布时间:2021-06-16
我使用nginx在同一个域下提供静态html站点和expressjs应用程序.我的nginx配置看起来像这样: location / { try_files $uri $uri/ /index.html; autoindex off; root /var/www/example.com/static/; } location /admin { proxy
我使用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);正在努力,但我有一些麻烦让我的其他路线工作.

例如:

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

如果我尝试访问example.com/admin/test,我只会看到根据我的日志无法获取/测试和404:

GET //test 404 11ms

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

谢谢!

记住斜线:

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

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

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

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