express server läuft jetzt mit https
This commit is contained in:
Lukas Nowy
2018-12-16 19:08:08 +01:00
parent 5589b0df3f
commit fd947bd852
475 changed files with 91128 additions and 0 deletions

65
express-server/node_modules/certpem/README.md generated vendored Normal file
View File

@ -0,0 +1,65 @@
cert-info.js
============
Read basic info from a cert.pem / x509 certificate.
Used for [Greenlock.js](https://git.coolaj86.com/coolaj86/greenlock-express.js)
Install
=======
```bash
# bin
npm install --global certpem
# node.js library
npm install --save certpem
```
Usage
=====
CLI
---
For basic info (subject, altnames, issuedAt, expiresAt):
```bash
certpem /path/to/cert.pem
```
Output all info by passing `--debug` or use `--json` to see the basic info pretty-printed.
node.js
-------
```javascript
'use strict';
var certpem = require('certpem').certpem
var cert = fs.readFile('cert.pem', 'ascii', function (err, certstr) {
// basic info
console.info(certpem.info(certstr));
// way too much info
// (requires npm install --save node.extend@1)
console.info(certpem.debug(certstr));
});
```
Example output:
```javascript
{
"subject": "localhost.daplie.com",
"altnames": [
"localhost.daplie.com"
],
"issuedAt": 1465516800000,
"expiresAt": 1499731199000
}
```
With a few small changes this could also work in the browser (that's how its dependencies are designed).