Permalink
Browse files

Use support server

  • Loading branch information...
1 parent 102f29c commit afb2c43f764ef637dca6585e3e96f9f6b64ddb77 @tmcw tmcw committed Jun 18, 2014
Showing with 2 additions and 1 deletion.
  1. +1 −0 .zuul.yml
  2. +1 −1 server.js
View
@@ -10,3 +10,4 @@ browsers:
version: latest
- name: ie
version: 8..latest
+server: server.js
View
@@ -2,4 +2,4 @@ require('http').createServer(function (req, res) {
var status = +req.url.substring(1);
res.writeHead(status);
res.end(status.toString());
-}).listen(+process.env.PORT);
+}).listen(process.env.ZUUL_PORT || +process.env.PORT);

0 comments on commit afb2c43

Please sign in to comment.