diff --git a/img/greenlock-146.png b/img/greenlock-146.png new file mode 100644 index 0000000..fee247e Binary files /dev/null and b/img/greenlock-146.png differ diff --git a/index.html b/index.html index bc67df3..3ba101c 100644 --- a/index.html +++ b/index.html @@ -2,236 +2,236 @@ Greenlock™ + - -
-
-

Greenlock™ - Instant, Free SSL Certificates via Let's Encrypt v2

-
-
-
+
+
+ +
+
+

Get the green lock for your website

+ + +
+

+

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

+ +
+ + +
+
+
+ + +
+ +
+ + + + + +
+ +

How will you validate your domain?

+
+ +
+ +
+ +
+ +

Verify Domains & Sub-Domains

+ + + + + + + + + + + + + + + + +
HostnameFile LocationFile Contents
example.com.well-known/acme-challenge/xxxsec.ret
+ + + + + + + + + + + + + + + + +
HostnameTXT HostTXT Value
example.com_acme-challenge.example.com4A54
+
+ +
+

Verify Wildcard Domains

+ + + + + + + + + + + + + + + + +
HostnameTXT HostTXT Value
example.com_acme-challenge.example.com4A54
+
+ + +
+ + +
+ 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) + +
+ + + + + + + + + + + + + +
- - -
-

-

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

- -
- - -
-
-
- - -
- -
- - -
-

- -
-
- -
-
- -
-
- - -
- - -
- -

How will you validate your domain?

-
- -
- -
- -
- -

Verify Domains & Sub-Domains

- - - - - - - - - - - - - - - - -
HostnameFile LocationFile Contents
example.com.well-known/acme-challenge/xxxsec.ret
- - - - - - - - - - - - - - - - -
HostnameTXT HostTXT Value
example.com_acme-challenge.example.com4A54
-
- -
-

Verify Wildcard Domains

- - - - - - - - - - - - - - - - -
HostnameTXT HostTXT Value
example.com_acme-challenge.example.com4A54
-
- - -
- - -
- 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) - - - - - - - - - - - - - - - diff --git a/styles/main.css b/styles/main.css new file mode 100644 index 0000000..d426873 --- /dev/null +++ b/styles/main.css @@ -0,0 +1,5 @@ +.column-row { + display: flex; + flex-direction: column; + align-items: center; +} \ No newline at end of file