Skip to content
Snippets Groups Projects
Commit 058e94e5 authored by Brian Peiris's avatar Brian Peiris
Browse files

remove https cert config

parent d796cf95
No related branches found
No related tags found
No related merge requests found
const fs = require("fs");
module.exports = {
cert: fs.readFileSync("/home/ubuntu/fullchain.pem"),
key: fs.readFileSync("/home/ubuntu/privkey.pem"),
};
......@@ -9,10 +9,6 @@ module.exports = merge(common, {
devServer: {
contentBase: path.resolve(__dirname, "public"),
disableHostCheck: true,
https: {
cert: fs.readFileSync("/home/ubuntu/fullchain.pem"),
key: fs.readFileSync("/home/ubuntu/privkey.pem")
},
before: function (app) {
// networked-aframe makes HEAD requests to the server for time syncing. Respond with an empty body.
app.head('\*', function (req, res, next) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment