0
ローカルのhttpsサーバを設定しました。しかし、自分のサイトhttps://localhost:3001
や/home
や/ projects
のようなページに行くと、ページがレンダリングされません。助けてもらえますか?ここに私のコードは次のとおりです。node.js httpsサーバがアプリケーションページを表示しない
var https = require('https');
var fs = require('fs');
var https_port = 3001;
var options = {
key: fs.readFileSync('./security/keys/localhost.key'),
cert: fs.readFileSync('./security/keys/localhost.crt')
};
var a = https.createServer(options, function (req, res) {
res.writeHead(200);
console.log('https server works!); //this prints out properly
}).listen(https_port);
res.render( 'soourceFileToBeRendered');と書かなければなりません。 か、res.end( 'hello world \ n')をチェックすることができます。 – vkstack