使用node.js/Express从HTTP重定向到HTTPS

问题描述:

有什么方法可以更改我的Web应用程序以侦听HTTPS而不是HTTP. 我正在使用node.js/express.

Is there any way I can change my web app to listen on HTTPS instead of HTTP. I'm using node.js/express.

我需要它来侦听HTTPS,因为我使用的是地理位置信息,除非从诸如HTTPS之类的安全上下文中提供服务,否则Chrome将不再支持该地理位置信息.

I need it to listen on HTTPS because I'm using geolocation, which Chrome no longer supports unless being served from a secure context such as HTTPS.

这是当前在HTTP上侦听的当前"./bin/www"文件.

This is the current './bin/www' file which currently listens on HTTP.

#!/usr/bin/env node

var app = require('../app');
var debug = require('debug')('myapp:server');
var http = require('http');

var port = normalizePort(process.env.PORT || '9494');
app.set('port', port);


var server = http.createServer(app)

server.listen(port);
server.on('error', onError);
server.on('listening', onListening);


function normalizePort(val) {
  var port = parseInt(val, 10);

  if (isNaN(port)) {
    // named pipe
    return val;
  }

  if (port >= 0) {
    // port number
    return port;
  }

  return false;
}

function onError(error) {
  if (error.syscall !== 'listen') {
    throw error;
  }

  var bind = typeof port === 'string'
    ? 'Pipe ' + port
    : 'Port ' + port;

  // handle specific listen errors with friendly messages
  switch (error.code) {
    case 'EACCES':
      console.error(bind + ' requires elevated privileges');
      process.exit(1);
      break;
    case 'EADDRINUSE':
      console.error(bind + ' is already in use');
      process.exit(1);
      break;
    default:
      throw error;
  }
}


function onListening() {
  var addr = server.address();
  var bind = typeof addr === 'string'
    ? 'pipe ' + addr
    : 'port ' + addr.port;
  debug('Listening on ' + bind);
}

是的,有一种方法.首先,生成一个自签名证书:

Yes, there is a way. First off, generate a self-signed certificate:

openssl req -nodes -new -x509 -keyout server.key -out server.cert

然后,借助Node的HTTPS库,通过HTTPS提供服务:

Then, serve over HTTPS thanks to Node's HTTPS lib:

// imports
const express = require('express');
var fs = require('fs');
const http = require('http');
const https = require('https');
const app = require('./path/to/your/express/app');

// HTTPS server
const httpsServer = https.createServer({
    key: fs.readFileSync('server.key'),
    cert: fs.readFileSync('server.cert')
}, app);
httpsServer.listen(443, () => console.log(`HTTPS server listening: https://localhost`));

最后,使用最小的HTTP服务器来侦听到相同域的请求并将其重定向:

Finally, use a minimal HTTP server to listen requests to the same domain and redirects them:

// redirect HTTP server
const httpApp = express();
httpApp.all('*', (req, res) => res.redirect(300, 'https://localhost'));
const httpServer = http.createServer(httpApp);
httpServer.listen(80, () => console.log(`HTTP server listening: http://localhost`));

当然,这是最小设置.对于生产,您将使用不同的证书,并将localhost替换为将从req生成的动态域名,并且您可能不想使用端口80和443等.

This is, of course, the minimal setup. For production, you'll use different certificates, and replace localhost by a dynamic domain name that you'll generate from req, and you might not want to use the ports 80 and 443, etc.

相关阅读:

  • Express + HTTPS
  • Express::res.redirect()
  • Redirecting to HTTPS in Express
  • HTTPS when deploying with Heroku