Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
Port in use webpage is now on github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
RealMCoded committed Jan 18, 2023
1 parent e822e1b commit 6fa5847
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 21 deletions.
2 changes: 1 addition & 1 deletion servers/2016/APIServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function serve() {
GET REQUESTS
*/
app.get('/', (req, res) => {
res.sendFile(path.resolve(`${__dirname}/../port-in-use.html`))
res.redirect("https://realmcoded.github.io/Rec.js/port-in-use.html")
})

app.get('/api/versioncheck/*', (req, res) => {
Expand Down
2 changes: 1 addition & 1 deletion servers/2017/APIServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function serve() {
GET REQUESTS
*/
app.get('/', (req, res) => {
res.sendFile(path.resolve(`${__dirname}/../port-in-use.html`))
res.redirect("https://realmcoded.github.io/Rec.js/port-in-use.html")
})

app.get('/api/versioncheck/*', (req, res) => {
Expand Down
19 changes: 0 additions & 19 deletions servers/port-in-use.html

This file was deleted.

0 comments on commit 6fa5847

Please sign in to comment.