aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-01-11 12:31:35 +0100
committerNoah Loomans <noahloomans@gmail.com>2017-01-11 12:31:35 +0100
commitcb411ca3e2c5b6f30c351cec5af94e9c1f32102d (patch)
tree41a93af49b11ffc81915ea17134523b1c8203fb5
parentb4b142ce708307c75696d393927305926df1d877 (diff)
use fullchain instaid of cert
-rwxr-xr-xbin/www2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/www b/bin/www
index b508396..df15b1f 100755
--- a/bin/www
+++ b/bin/www
@@ -23,7 +23,7 @@ var credentials = {}
if (shouldUseHTTPS) {
privateKey = fs.readFileSync('/etc/letsencrypt/live/rooster.hetmml.nl/privkey.pem', 'utf8')
- certificate = fs.readFileSync('/etc/letsencrypt/live/rooster.hetmml.nl/cert.pem', 'utf8')
+ certificate = fs.readFileSync('/etc/letsencrypt/live/rooster.hetmml.nl/fullchain.pem', 'utf8')
credentials = {key: privateKey, cert: certificate}
}