node.js - Cannot open site with https server using Express -


var fs = require('fs'), https = require('https'), express = require('express'), app = express();  https.createserver({   key: fs.readfilesync('./ssl/key.pem'),   cert: fs.readfilesync('./ssl/cert.pem') }, app).listen(55555);  app.get('/', function (req, res) {   res.header('content-type', 'text/html');   return res.end('<h1>hello, secure world!</h1>'); }); 

i tried many times using https server based on express, while still cannot open site, example using chrome:

it says "no data received" , "err_empty_response".

so listening, response cannot sent client, why? thank you!


Comments

Popular posts from this blog

asp.net mvc - SSO between MVCForum and Umbraco7 -

Python Tkinter keyboard using bind -

ubuntu - Selenium Node Not Connecting to Hub, Not Opening Port -