self-signed-ssl
self-signed-ssl copied to clipboard
Generate self-signed TLS certificate using OpenSSL
Just an idea: Having an option to provide the path to `openssl` executable may be helpful for people using an alternative OpenSSL library or version.
The script works great as-is, however, when creating the certs, the script only asks for (sub)domains not for an IP address. As such, when I try to access HTTPS IP...
Hi, this is not an issue per se, however I figured I'd let you know (plus might be useful to any Google lurkers around here). I downloaded your script to...
Many other CLI utilities seem to be moving towards using a subcommand structure. It could be nice to break things up using the following subcommands: - `ca` - `csr` -...
``` + CSR=/Users/kes/dev/wi-deploy/docker-images/base/prd.ca.csr + openssl genrsa -out /Users/kes/dev/wi-deploy/docker-images/base/prd.ca.key 2048 + openssl req -new -nodes -sha256 -subj /CN=prd.ca -newkey rsa:2048 -key /Users/kes/dev/wi-deploy/docker-images/base/prd.ca.key -out /Users/kes/dev/wi-deploy/docker-images/base/prd.ca.csr Warning: Not generating key via given -newkey...
``` -nodes This option is deprecated since OpenSSL 3.0; use -noenc instead. ```