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
Hostname TXT Host TXT Value
example.com _acme-challenge.example.com 4A54

Verify Wildcard Domains

Hostname TXT Host TXT Value
example.com _acme-challenge.example.com 4A54
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());
    })
            



View Source (git)