如何在 hapi.js 中实现通配符子域

How to implement wildcard subdomain in hapi.js

我需要在 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 在代理后面。有什么办法可以轻松获取子域值。还有没有更好的替代方法来实现这个?

对于上述问题,我能够在 apache 虚拟主机中使用 ProxyPreserveHost On 来保留信息对象中的主机。