diff --git a/README.txt b/README.txt
index a34129e..6669a1c 100644
--- a/README.txt
+++ b/README.txt
@@ -14,12 +14,10 @@ https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager
 
 1b. Build from source on Ubuntu (and probably Debian):
 
-NOTE: replace the 'x' in v0.8.x with the current latest stable version.
-
   sudo apt-get install build-essential git curl openssl libssl-dev
   mkdir -p ~/local/src
   cd ~/local/src
-  git clone --branch v0.8.x git://github.com/joyent/node.git
+  git clone --branch v0.8 git://github.com/joyent/node.git
   cd node
   ./configure
   make
@@ -34,7 +32,7 @@ OPTIONAL: install node-gyp, so that the ws package is faster.
 Make sure you are in the nodejs module directory - NPM needs the package.json
 file that comes with the nodejs module to install the right modules.
 
-  cd path/to/your/nodejs/module/directory
+  cd path/to/your/drupal/sites/foo/modules/nodejs/
   npm install
 
 3. Create a 'nodejs.config.js' file in your nodejs module directory.
@@ -42,15 +40,17 @@ file that comes with the nodejs module to install the right modules.
 Read the 'nodejs.config.js.example' file. A basic configuration can be as simple as:
 
 settings = {
-  host: '*',
+  host: 'CHANGE ME TO THE HOSTNAME OF YOUR DRUPAL SITE',
+  port: 1337,
   serviceKey: 'CHANGE ME',
   backend: {
     port: 80,
-    host: 'CHANGE ME TO THE HOSTNAME OF YOUR DRUPAL SITE',
-    scheme: 'http',
+    host: 'CHANGE ME TO THE HOSTNAME OF YOUR DRUPAL SITE ALSO',
     basePath: '',
     messagePath: '/nodejs/message'
   },
+  baseAuthPath: '/nodejs/',
+  publishUrl: 'publish',
   debug: true
 };
 
