瀏覽代碼

Not got github

David Banham 12 年之前
父節點
當前提交
7bae522488
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      plugin/multiplex/index.js

+ 6 - 0
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();