Created
June 4, 2011 19:22
-
-
Save samuelkadolph/1008240 to your computer and use it in GitHub Desktop.
app.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require("fs"); | |
var http = require("http"); | |
var https = require("https"); | |
var express = require("express"); | |
var app = express.createServer(); | |
var httpsOptions = { | |
key: fs.readFileSync(process.env.HOME + "/localhost-key.pem"), | |
cert: fs.readFileSync(process.env.HOME + "/localhost-cert.pem") | |
}; | |
var handler = function(request, response) { | |
app.emit("request", request, response); | |
}; | |
var httpServer = http.createServer(handler); | |
var httpsServer = https.createServer(httpsOptions, handler); | |
httpServer.listen(80); | |
httpsServer.listen(443); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require("fs"); | |
var http = require("http"); | |
var https = require("https"); | |
var express = require("express"); | |
var app = express.createServer(); | |
var httpsOptions = { | |
key: fs.readFileSync(process.env.HOME + "/localhost-key.pem"), | |
cert: fs.readFileSync(process.env.HOME + "/localhost-cert.pem") | |
}; | |
var handler = function(request, response) { | |
app.emit("request", request, response); | |
}; | |
var httpServer = http.createServer(handler); | |
var httpsServer = https.createServer(httpsOptions, handler); | |
httpServer.listen(80); | |
httpsServer.listen(443); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment