我需要在Hapi.js服务器上实现通配符子域。我有主域名让我们假设。 example.com现在我需要实现* .example.com,我已经将DNS设置为指向hapi.js服务器。 因此,如果我访问client1.example.com,我将需要获取client1值并在mongodb表中检查它并根据它执行一些操作。
我尝试过使用server.ext
server.ext('onRequest', function (request, reply) {
console.log(request.info);
return reply.continue();
});
但是这给了我localhost的主机值:8080
{ received: 1420285577874,
responded: 0,
remoteAddress: '127.0.0.1',
remotePort: 58001,
referrer: '',
host: 'localhost:8080',
acceptEncoding: 'gzip',
hostname: 'localhost' }
我想这是因为Hapi.js落后于代理。有什么方法可以轻松获得子域值。还有更好的替代方法来实现这一目标吗?
答案 0 :(得分:0)
对于上面的问题,我能够在apache虚拟主机中使用ProxyPreserveHost On来保存信息对象中的主机。