port change.

This commit is contained in:
Dooho Yi 2020-11-13 00:32:52 +09:00
parent 60382e8649
commit 6a026970d0

View file

@ -12,7 +12,7 @@ var app = express();
// maybe... 'flyio' is interfering the middle (http://pzzz.ink <- flyio -> https://dianaband-paradezzz.glitch.me) // maybe... 'flyio' is interfering the middle (http://pzzz.ink <- flyio -> https://dianaband-paradezzz.glitch.me)
// ==> so, we won't do it. but we will let the client do it. -> public/sketch.js #7 ~ #11 // ==> so, we won't do it. but we will let the client do it. -> public/sketch.js #7 ~ #11
var server = http.createServer(app); var server = http.createServer(app);
var port = process.env.PORT || 3000; var port = process.env.PORT || 9009;
server.listen(port); server.listen(port);
// //
app.use(express.static("public")); app.use(express.static("public"));