mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
certs/Makefile: Fix generating cert from only a key (no config then)
This commit is contained in:
parent
4e8f92f0ae
commit
b50935a87c
1 changed files with 1 additions and 2 deletions
|
@ -45,8 +45,7 @@ keysize=2048
|
|||
@chmod 400 $*.key -c
|
||||
|
||||
%.crt: %.key
|
||||
openssl req -new -x509 -nodes -key $^ -days 365 \
|
||||
-sha256 -out $@ -utf8 -config $(firstword $^)
|
||||
openssl req -new -x509 -key $^ -days 365 -sha256 -utf8 -subj /CN=$* -out $@
|
||||
|
||||
%.crt:
|
||||
umask 0077 && touch $*.key
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue