From 813a977455dde1e924ddca27439ac99e39bd855f Mon Sep 17 00:00:00 2001 From: Marc-Antoine Date: Sun, 18 Sep 2016 21:17:40 +0200 Subject: [PATCH] Fix syntax and change false pathname --- config.template.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.template.js b/config.template.js index d333e22d..d0c972f3 100644 --- a/config.template.js +++ b/config.template.js @@ -10,10 +10,10 @@ const CONFIG = { port: 5000, socket: false, socketPath: '/tmp/rtorrent.sock' - } + }, ssl: false, - sslKey: '/etc/letsencrypt/live/my.awesome.domain.com/fullchain.pem', - sslCert: '/etc/letsencrypt/live/my.awesome.domain.com/privkey.pem' + sslKey: '/absolute/path/to/key/', + sslCert: '/absolute/path/to/certificate/' }; module.exports = CONFIG;