diff options
author | David Banham <david@banham.id.au> | 2012-08-15 18:57:48 +1000 |
---|---|---|
committer | David Banham <david@banham.id.au> | 2012-08-15 18:57:48 +1000 |
commit | 7bae52248832fe8bccb95bb4cd201898514aa56a (patch) | |
tree | b1aa02dc05123da4d6775ba55475cf4028d9c227 | |
parent | b27f21e527a9b189ac4bde6e930001754d7a737b (diff) | |
download | perl-software-in-gnu-guix-7bae52248832fe8bccb95bb4cd201898514aa56a.tar perl-software-in-gnu-guix-7bae52248832fe8bccb95bb4cd201898514aa56a.tar.gz |
Not got github
-rw-r--r-- | plugin/multiplex/index.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugin/multiplex/index.js b/plugin/multiplex/index.js index 45c9c74..4665639 100644 --- a/plugin/multiplex/index.js +++ b/plugin/multiplex/index.js @@ -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(); |