Open ssl.conf in a text editor.
Edit the domain(s) listed under the [alt_names] section so that they match the local domain name you want to use for your project, e.g.
DNS.1 = my-project.dev
Additional FQDNs can be added if required:
| function download(url, cb) { | |
| var data = ""; | |
| var request = require("http").get(url, function(res) { | |
| res.on('data', function(chunk) { | |
| data += chunk; | |
| }); | |
| res.on('end', function() { | |
| cb(data); |
| docker container stop $(docker container ls -aq) | |
| docker container rm $(docker container ls -aq) | |
| docker system prune -a |