Created
February 1, 2010 23:30
-
-
Save stephenlb/292173 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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