commit2
This commit is contained in:
parent
faea222f02
commit
4c3a8a5a2a
3 changed files with 6 additions and 3 deletions
6
bin/www
6
bin/www
|
@ -11,9 +11,9 @@ var fs = require("fs");
|
|||
var https = require("https");
|
||||
|
||||
var ssl_options = {
|
||||
key: fs.readFileSync("./domain.key"),
|
||||
cert: fs.readFileSync("./domain.crt"),
|
||||
ca: fs.readFileSync("./intermediate.pem")
|
||||
key: fs.readFileSync('./acme/etc/live/palmpay.io/privkey.pem'),
|
||||
cert: fs.readFileSync('./acme/etc/live/palmpay.io/cert.pem'),
|
||||
ca: fs.readFileSync('./acme/etc/live/palmpay.io/fullchain.pem')
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
BIN
client/public/docs/Blockchain_My_City_BMC.pdf
Normal file
BIN
client/public/docs/Blockchain_My_City_BMC.pdf
Normal file
Binary file not shown.
3
generatessl
Normal file
3
generatessl
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
cd /root/website
|
||||
greenlock certonly --webroot-path public --acme-version draft-11 --acme-url https://acme-v02.api.letsencrypt.org/dit.org/directory --agree-tos --email <EMAIL> --domains <--domains palmpay.io,palmpay.io <--- example> --community-member --config-dir ./acme/etc
|
Loading…
Reference in a new issue