Created
January 17, 2016 12:13
-
-
Save justindmyers/266d169e97de20068f78 to your computer and use it in GitHub Desktop.
https with Ionic
This file contains hidden or 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 httpProxy = require('http-proxy'); | |
var http = require('http'); | |
var https = require('https'); | |
var express = require('express'); | |
var app = express(); | |
app.use(function (req, res, next) { | |
console.log(req); | |
if (req.url === '/') { | |
console.log("Transforming response"); | |
var _write = res.write; | |
// Rewrite the livereload port with our secure one | |
res.write = function (data) { | |
_write.call(res, data.toString().replace('35729', '35700'), 'utf8'); | |
} | |
} | |
proxy.web(req, res); | |
} | |
); | |
// Proxy fpr connect server to use | |
var proxy = httpProxy.createServer({ | |
target: { | |
host: 'localhost', | |
port: 8100 | |
} | |
}); | |
//https://matoski.com/article/node-express-generate-ssl/ | |
var secureServer = https.createServer({ | |
key: fs.readFileSync('./server.key'), | |
cert: fs.readFileSync('./server.crt'), | |
ca: fs.readFileSync('./ca.crt'), | |
requestCert: true, | |
rejectUnauthorized: false | |
}, app).listen('8101', function() { | |
console.log('Secure Express server listening on port 8101'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please someone can explain how can I apply this solution into my ionic app? Thanks.