From bcb8fe5aee0c831d48d3b43bc7f0368420ac87dd Mon Sep 17 00:00:00 2001 From: Tarun Garg Date: Thu, 7 Jul 2016 22:19:36 +0530 Subject: [PATCH] Change http to https --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index b46d5d4..ea22fd3 100644 --- a/app.js +++ b/app.js @@ -10,7 +10,7 @@ function listening () { } function handler (req, res) { - redirect(res, 301, 'http://ponyfoo.com' + req.url); + redirect(res, 301, 'https://ponyfoo.com' + req.url); } function redirect (res, status, url) {