From fa0f8005a9604dc0f73d7128ee142543e0f1db21 Mon Sep 17 00:00:00 2001 From: Michael Kelley Date: Mon, 2 Jan 2017 13:40:55 -0500 Subject: [PATCH] Update snippet to reflect HTTPS usage instead of HTTP --- templates/front/snippets/node.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/front/snippets/node.html b/templates/front/snippets/node.html index c2d2e703..c250646e 100644 --- a/templates/front/snippets/node.html +++ b/templates/front/snippets/node.html @@ -1,3 +1,3 @@ -
var http = require('http');
-http.get("{{ ping_url }}");
+
var http = require('https');
+https.get("{{ ping_url }}");