Browse Source

Update snippet to reflect HTTPS usage instead of HTTP

pull/109/head
Michael Kelley 8 years ago
committed by GitHub
parent
commit
a8f2306724
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      templates/front/snippets/node.txt

+ 2
- 2
templates/front/snippets/node.txt View File

@ -1,2 +1,2 @@
var http = require('http');
http.get("PING_URL");
var https = require('https');
https.get("PING_URL");

Loading…
Cancel
Save