summaryrefslogtreecommitdiffhomepage
path: root/example/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'example/index.js')
-rw-r--r--example/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/index.js b/example/index.js
index a6a2364..e47023d 100644
--- a/example/index.js
+++ b/example/index.js
@@ -115,8 +115,8 @@ app.post('/verify-assertion', (req, res) => {
});
https.createServer({
- key: fs.readFileSync('./dev.dontneeda.pw.key'),
- cert: fs.readFileSync('./dev.dontneeda.pw.crt'),
+ key: fs.readFileSync('./dev.yourdomain.com.key'),
+ cert: fs.readFileSync('./dev.yourdomain.com.crt'),
}, app).listen(port, host, () => {
console.log(`🚀 Server ready at https://${host}:${port}`);
});