私はlocomotive.jsMVCプロジェクトを持っており、httpでリッスンしています。httpsでリッスンし、すべてのhttpをhttpsにリダイレクトしたい。
node.jsのcreateServerが見つかりません。見つけたコードは、/ lib / node_modules / locomotive / lib / locomotive / cli/server.jsだけです。
console.log('booting app at %s in %s environment', dir, env);
locomotive.boot(dir, env, function(err, server) {
if (err) {
throw err;
}
server.listen(port, address, function() {
var addr = this.address();
console.log('listening on %s:%d', addr.address, addr.port, addr);
});
});
に変更されました:
console.log('booting app at %s in %s environment', dir, env);
var crypto = require('crypto'),
fs = require("fs");
var privateKey = fs.readFileSync('/privatekey.pem').toString();
var certificate = fs.readFileSync('/certificate.pem').toString();
var https = require('https');
var credentials = crypto.createCredentials({key: privateKey, cert: certificate});
そして、私は今ちょっと立ち往生しています、何か助けはありますか?
ありがとう !