我目前有 nginx 提供的传输守护程序 web ui
server {
listen 2324;
server_name torrent.example.com;
location /rpc {
proxy_pass http://127.0.0.1:9091/transmission/rpc;
}
location /transmission {
proxy_pass http://127.0.0.1:9091/transmission;
}
location / {
proxy_pass http://127.0.0.1:9091/transmission/web/;
}
}
我正在尝试通过https://github.com/stormpath/stormpath-express-sample这个仪表板/用户界面显示此页面
在 routes/index.js 我有
router.get('/torrent', function (req, res, next) {
if (!req.user || req.user.status !== 'ENABLED') {
return res.redirect('/login');
}
var newurl = 'http://127.0.0.1:2324'
request(newurl).pipe(res)
});
我在转到 /torrent 但没有图像/css/js 时看到了 html 我认为该请求不是用于此目的的正确工具 有人可以提供更好的解决方案吗
非常感谢