Details
Verify domain
Install certificates
Greenlock

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






Let's verify your domain

Upload this file

FILENAME
...loading

CONTENTS
...loading

To this location

..loading

Set this DNS Record

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

Set this DNS Record

Hostname
loading...
TXT Host
loading...
TXT Value
loading...
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());
    })