From 604ef0fb9c5b33a9d16c956ba7ca9e1e5e5c74f5 Mon Sep 17 00:00:00 2001 From: Ilya Grigorik Date: Mon, 25 Jun 2012 09:01:20 -0700 Subject: [PATCH] woot, can use 0.8.0, no need for custom builds! --- README.md | 16 ++-------------- package.json | 2 +- 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 7998cd4..9a7be40 100644 --- a/README.md +++ b/README.md @@ -19,19 +19,7 @@ Same logic applies for tunelling SPDY! We can establish a SPDY v2 tunnel to the ## Installation & Configuration -SPDY proxy requires node.js 0.7.x+. To install: - -```bash -$> git clone git://github.com/joyent/node.git && cd node -$> ./configure --prefix=$HOME/.node/dev # <- or any other dir - -$> make install -j4 # in -jN, N is number of CPU cores on your machine - -# Add node's bin to PATH env variable -$> echo 'export PATH=$HOME/.node/dev/bin:$PATH' >> ~/.bashrc -``` - -Once node.js is installed, you can use npm (node package manager) to install SPDY Proxy: +SPDY proxy requires node.js 0.8.x+. Grab the [package for your platform](http://nodejs.org/) from the node site. Once node.js is installed, you can use npm (node package manager) to install SPDY Proxy: ```bash $> npm install -g spdyproxy @@ -91,7 +79,7 @@ $> spdyproxy -k keys/mykey.pem -c keys/mycert.pem -p 44300 -U user -P pass * [Web VPN: Secure proxies with SPDY & Chrome][spdy-vpn] * [SPDY proxy examples on chromium.org][spdy-examples] -* [PAC wikipedia page][pac] +* [Proxy Auto Configuration][pac] * [Creating an SSL Certificate Signing Request][csr] * [Creating a Self-Signed SSL Certificate][self-signed] diff --git a/package.json b/package.json index a89dd87..c9fc9fa 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,6 @@ "bin": { "spdyproxy": "./bin/spdyproxy" }, "engines": [ - "node >= 0.7.0" + "node >= 0.8.0" ] }