Details
Verify domain
Install certificates
Greenlock

Certificates are valid for 90 days. Renewal is free :)






Let's verify your domain

Upload each file

FILENAME
...loading

CONTENTS
...loading

LOCATION
..loading

Set each DNS Record

TXT Host
loading...
TXT Value
loading...

Warning: You should wait at least 30 seconds after setting DNS records before continuing.

Google DNS Users: You may need to wait up to 5 minutes.

Set each DNS Record (for wildcards)

TXT Host
loading...
TXT Value
loading...

Warning: You should wait at least 30 seconds after setting DNS records before continuing.

Google DNS: You may need to wait up to 5 minutes.

Verifying Domains... (give us 5 seconds or so...)


						


						

node.js https server example

    'use strict';

    var https = require('https');
    var server = https.createServer({
      key: require('fs').readFileSync('./privkey.pem')
    , cert: require('fs').readFileSync('./fullchain.pem')
    }, function (req, res) {
      res.end("Hello, World!");
    }).listen(443, function () {
      console.log('Listening on', this.address());
    })