Add a simple script for self-signing CSRs with local trusted CA
This commit is contained in:
parent
0da3a29d27
commit
e8f9143b1b
1 changed files with 7 additions and 0 deletions
7
local/bin/sign-with-own-ca
Executable file
7
local/bin/sign-with-own-ca
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/zsh
|
||||||
|
if ! [[ -r $1 ]]; then
|
||||||
|
print "Usage: $0 path/to/request.csr" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
ca=/etc/ssl/$HOST/root
|
||||||
|
sudo openssl x509 -req -CA $ca.crt -CAkey $ca.key -CAcreateserial -sha256 -days 30 -in $1 -out ${1:r}.crt
|
Loading…
Reference in a new issue