From 0c73ddbb40e4bf2dbe80c3a284e672d2f3adfb72 Mon Sep 17 00:00:00 2001 From: Will Murphy Date: Wed, 17 Feb 2021 21:56:38 -0500 Subject: [PATCH] autoenctryp settings --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 4147a9a..84a2422 100644 --- a/index.js +++ b/index.js @@ -66,7 +66,7 @@ app.use(function (err, req, res, next) { }) const server = process.env.NODE_ENV === 'production' - ? AutoEncrypt.https.createServer(app) + ? AutoEncrypt.https.createServer({ domains: ['gup.pe'] }, app) : https.createServer(sslOptions, app) client.connect({ useNewUrlParser: true })