1
0
mirror of https://api.glitch.com/git/presence-button synced 2024-11-05 08:17:32 +00:00

📍🍮 Checkpoint

./server.js:933874/240
This commit is contained in:
Glitch (hello-express) 2019-12-18 16:40:58 +00:00
parent 41f09e9473
commit 757e56c9e3

View File

@ -32,10 +32,10 @@ const redirectToHTTPS = (req, res, next) => {
res.redirect("https://" + req.headers.host + req.url);
}
};
app.use("/", redirectToHTTPS);
app.use("/api", redirectToHTTPS);
app.use("/img", redirectToHTTPS);
app.get("/", redirectToHTTPS);
app.get("/", (req, res) => {
res.sendFile(__dirname + "/views/index.html");
});