Skip to content

Instantly share code, notes, and snippets.

@stephenlb
Created February 1, 2010 23:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save stephenlb/292173 to your computer and use it in GitHub Desktop.
Save stephenlb/292173 to your computer and use it in GitHub Desktop.
// config file: nodejuice.js
// Example StaticMatic configuration.
// -> http://localhost:3010
exports.sidekick = {
host : null, // Leave 'null' to listen on all hosts.
port : 3010, // access your server from this port.
fetch : { // point to your web server.
host : 'localhost',
port : 3000
}
};
exports.seeker = {
host : null, // Leave 'null' to listen on all hosts.
port : 8002, // port :-/
delay : 150, // time in ms before page starts to reload.
// setting too low will cause file read errors in Apache
wait : 1200, // time in milliseconds before a new connection.
// setting too low will make crazziness.
ignore : [ // path or file name to ignore.
/\/\./,
/git$/,
/svn$/,
/cvs$/,
/swp$/,
/~$/
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment