From 91737fadb640f30d3cd959f29069537473207efd Mon Sep 17 00:00:00 2001 From: indexzero Date: Wed, 18 May 2011 21:06:12 -0400 Subject: [PATCH] [doc] Update examples for HTTPS to HTTP proxying --- examples/proxy-https-to-http.js | 53 +++++++++++++++++++ ...proxy-https.js => proxy-https-to-https.js} | 13 +++-- 2 files changed, 61 insertions(+), 5 deletions(-) create mode 100644 examples/proxy-https-to-http.js rename examples/{basic-proxy-https.js => proxy-https-to-https.js} (88%) diff --git a/examples/proxy-https-to-http.js b/examples/proxy-https-to-http.js new file mode 100644 index 0000000..059c311 --- /dev/null +++ b/examples/proxy-https-to-http.js @@ -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); diff --git a/examples/basic-proxy-https.js b/examples/proxy-https-to-https.js similarity index 88% rename from examples/basic-proxy-https.js rename to examples/proxy-https-to-https.js index 01f9716..d93cab8 100644 --- a/examples/basic-proxy-https.js +++ b/examples/proxy-https-to-https.js @@ -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. @@ -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); \ No newline at end of file