Browse Source

Merge pull request #109 from mkelley82/patch-2

Update snippet to reflect HTTPS usage instead of HTTP
pull/114/head
Pēteris Caune 8 years ago
committed by GitHub
parent
commit
ac57a4414e
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