Skip to content
Personal
Open source
Business
Explore
Sign up
Sign in
Pricing
Blog
Support
Search GitHub
This repository
Watch
99
Star
71
Fork
12
mapbox
/
corslite
Code
Issues
1
Pull requests
0
Projects
0
Pulse
Graphs
Permalink
Browse files
Use support server
Loading branch information
...
1 parent
102f29c
commit
afb2c43f764ef637dca6585e3e96f9f6b64ddb77
tmcw
committed
Jun 18, 2014
Unified
Split
Showing
2 changed files
with
2 additions
and
1 deletion
.
+1
−0
.zuul.yml
+1
−1
server.js
Show comments
View
1
.zuul.yml
@@ -10,3 +10,4 @@ browsers:
version:
latest
-
name:
ie
version:
8..latest
+
server:
server.js
Show comments
View
2
server.js
@@ -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
);
Toggle all file notes
0 comments on commit
afb2c43
Please
sign in
to comment.
You can't perform that action at this time.
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
0 comments on commit
afb2c43