goodrobots / maverick-web

web based frontend for maverick
MIT License
13 stars 7 forks source link

webdev runs as http only #176

Closed fnoop closed 4 years ago

fnoop commented 4 years ago

Need to be able to run webdev as https as well as http to test ssl stuff.

fnoop commented 4 years ago

In vue.config.js, set:

    https: {
      key: fs.readFileSync('/srv/maverick/data/security/ssl/web/mavweb.key'),
      cert: fs.readFileSync('/srv/maverick/data/security/ssl/web/mavweb.crt'),
      ca: fs.readFileSync('/srv/maverick/data/security/ssl/ca/mavCA.pem'),
    },