如何配置 Google 计算引擎以对 Nodejs 服务器使用 HTTPS?

2024-05-20

我想使用 https / SSL 在 google 计算引擎中运行 nodejs 和 socket.io 服务器。

我安装了自签名证书https://cloud.google.com/compute/docs/load-balancing/http/ssl-certificates https://cloud.google.com/compute/docs/load-balancing/http/ssl-certificates.

现在,如何让nodejs服务器使用https协议?

Thanks,


下面是我在nodejs中用于HTTPS的代码,

var app = require('express')();
var https = require('https');
var fs = require('fs');
var PORT = 443;

var options = {
  key: fs.readFileSync('XYZ.key'),
  cert: fs.readFileSync('ABC.crt')
};

var server = https.createServer(options, app).listen(PORT, function () {
  console.log("Express listening on port " + PORT);
});

// Post request.
var req_res = function (req, res) {
  console.log("[200] " + req.url);
  var fullBody = '';

  // Read post data.
  req.on('data', function (chunk) {
    fullBody += chunk.toString();

    if (fullBody.length > 1e6) {
      // FLOOD ATTACK OR FAULTY CLIENT, NUKE REQUEST
      req.connection.destroy();
    }
  });

  // Send response.
  req.on('end', function () {
    // empty 200 OK response for now
    res.writeHead(200, {
      'Content-Type': 'application/json'
    });
    res.end(JSON.stringify({
      'success': true
    }));
  });
};

// Hello World
app.get('/*', function (req, res) {
  res.status(200).send('Hello World...');
});

// Post request to receive notifications.
app.post('/post', req_res);

对于谷歌计算引擎,您只需从防火墙启用443端口即可。

gcloud compute firewall-rules create allow-https --description "https server" --allow tcp:443 --format json
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

如何配置 Google 计算引擎以对 Nodejs 服务器使用 HTTPS? 的相关文章

随机推荐