Skip to content

Commit

Permalink
[doc] Update examples for HTTPS to HTTP proxying
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed May 19, 2011
1 parent 895f577 commit 91737fa
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 5 deletions.
53 changes: 53 additions & 0 deletions examples/proxy-https-to-http.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
proxy-https-to-http.js: Basic example of proxying over HTTPS to a target HTTP server
Copyright (c) 2010 Charlie Robbins, Mikeal Rogers, Fedor Indutny, & Marak Squires.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

var https = require('https'),
http = require('http'),
util = require('util'),
colors = require('colors'),
httpProxy = require('./../lib/node-http-proxy'),
helpers = require('./../test/helpers');

var opts = helpers.loadHttps();

//
// Crete the target HTTPS server
//
http.createServer(function (req, res) {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.write('hello http over https\n');
res.end();
}).listen(8000);

//
// Create the proxy server listening on port 443.
//
httpProxy.createServer(8000, 'localhost', {
https: opts
}).listen(8080);

util.puts('https proxy server'.blue + ' started '.green.bold + 'on port '.blue + '8080'.yellow);
util.puts('http server '.blue + 'started '.green.bold + 'on port '.blue + '8000 '.yellow);
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
basic-proxy-https.js: Basic example of proxying over HTTPS
proxy-https-to-https.js: Basic example of proxying over HTTPS to a target HTTPS server
Copyright (c) 2010 Charlie Robbins, Mikeal Rogers, Fedor Indutny, & Marak Squires.
Expand Down Expand Up @@ -45,9 +45,12 @@ https.createServer(opts, function (req, res) {
//
// Create the proxy server listening on port 443.
//
httpProxy.createServer(443, 'localhost', {
https: opts
httpProxy.createServer(8000, 'localhost', {
https: opts,
target: {
https: true
}
}).listen(8080);

util.puts('https proxy server'.blue + ' started '.green.bold + 'on port '.blue + '8000'.yellow);
util.puts('https server '.blue + 'started '.green.bold + 'on port '.blue + '8080 '.yellow);
util.puts('https proxy server'.blue + ' started '.green.bold + 'on port '.blue + '8080'.yellow);
util.puts('https server '.blue + 'started '.green.bold + 'on port '.blue + '8000 '.yellow);

0 comments on commit 91737fa

Please sign in to comment.