Not got github
authorDavid Banham <david@banham.id.au>
Wed, 15 Aug 2012 08:57:48 +0000 (18:57 +1000)
committerDavid Banham <david@banham.id.au>
Wed, 15 Aug 2012 08:57:48 +0000 (18:57 +1000)
plugin/multiplex/index.js

index 45c9c749ea2b06bfb41e66ca39c52006b75fea49..4665639ea493f0de6bfb9a4941c29fca97ff2a62 100644 (file)
@@ -32,6 +32,12 @@ app.configure(function() {
 app.get("/", function(req, res) {
        fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
 });
+app.get("/fixed.html", function(req, res) {
+       fs.createReadStream(opts.baseDir + '/fixed.html').pipe(res);
+});
+app.get("/fixedmaster.html", function(req, res) {
+       fs.createReadStream(opts.baseDir + '/fixedmaster.html').pipe(res);
+});
 
 app.get("/token", function(req,res) {
        var ts = new Date().getTime();