Skip to content

Commit

Permalink
Changed port to 80.
Browse files Browse the repository at this point in the history
  • Loading branch information
johncbowers committed Jul 12, 2018
1 parent ce88b02 commit 99ec3bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions framework/player.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h1 id="branding" style="z-index: 200; margin-bottom: 0; left: 0.5em; position:f
</h1>

<div id="url" style="z-index: 200; right: 1.5em; position:fixed;" class="bottom">
Interact with this presentation @ halldisplay.cs.jmu.edu:8080.
Interact with this presentation @ halldisplay.cs.jmu.edu.
</div>

<script>
Expand Down Expand Up @@ -214,4 +214,4 @@ <h1 id="branding" style="z-index: 200; margin-bottom: 0; left: 0.5em; position:f

</body>

</html>
</html>
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var app = express();
app.use(express.static('framework'));


var server = require('http').createServer(app).listen(process.env.PORT || 8080);
var server = require('http').createServer(app).listen(process.env.PORT || 80);

// Create the Socket.IO server and attach it to the HTTP server
var io = require('socket.io').listen(server);
Expand Down

0 comments on commit 99ec3bf

Please sign in to comment.