在Hapi.js中将http重定向到https

时间:2017-08-30 11:30:23

标签: node.js hapijs

我的hapi服务器确实有以下配置

const server = new Hapi.Server();

const tls = {
  cert: fs.readFileSync(path.join(__dirname, '../certificates/cert.crt')),
  key: fs.readFileSync(path.join(__dirname, '../certificates/cert.key')),
};

server.connection({
  port: process.env.PORT_HTTP || 80,
  host: process.env.HOST || 'localhost',
});

server.connection({
  port: process.env.PORT_HTTPS || 443,
  host: process.env.HOST || 'localhost',
  tls,
});

服务器在httphttps都正常运行,但我想将所有流量从http重定向到https

我应该如何继续,尝试注册hapi-require-https npm模块,但流量仍然保持不变,没有任何反应。

2 个答案:

答案 0 :(得分:1)

为http请求创建一个额外的服务器,并将它们绑定到redirect函数。

var Hapi = require('hapi');
var http = new Hapi.Server(80);
var server = new Hapi.Server(443, { tls: {} });

var redirect = function () {

    this.reply.redirect('https://your.site/' + this.params.path);
});

http.route({ method: '*', path: '/{path*}', handler: redirect });

更新(其他选项)

server.route({
    method: 'GET',
    path: '/', 
    handler: function (request, reply) {

        if(request.headers.referer.split(':')[0] == "http"){
           this.reply.redirect('https://your.site' + this.params.path);
        }
    }
});

这个怎么样?将它们绑定

var http = new Hapi.Server(80); // our extra server
http.route({ 
method: '*', 
path: '/{path*}', 
handler: 
      function (request, reply) {

       // if(request.headers.referer.split(':')[0] == "http"){
           this.reply.redirect('https://your.site' + this.params.path);
       // }
    }
});

答案 1 :(得分:1)

创建两个服务器实例来处理http&单独https流量。

id

现在将hapi-gate插件注册到基本服务器,以便将流量重定向到https。

properties::jsonb

您也可以使用hapi-require-https插件。