mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
certs/Makefile: Remove more -c flags
This commit is contained in:
parent
e7633167c7
commit
3b7519cf78
1 changed files with 4 additions and 4 deletions
|
@ -22,7 +22,7 @@ keysize=2048
|
||||||
umask 0077 && touch $*.key
|
umask 0077 && touch $*.key
|
||||||
openssl req -new -newkey rsa:$(keysize) -nodes -keyout $*.key \
|
openssl req -new -newkey rsa:$(keysize) -nodes -keyout $*.key \
|
||||||
-sha256 -utf8 -config $^ -out $@
|
-sha256 -utf8 -config $^ -out $@
|
||||||
@chmod 400 $*.key -c
|
@chmod 400 $*.key
|
||||||
|
|
||||||
%.csr: %.key
|
%.csr: %.key
|
||||||
openssl req -new -key $^ -utf8 -subj /CN=$* -out $@
|
openssl req -new -key $^ -utf8 -subj /CN=$* -out $@
|
||||||
|
@ -31,7 +31,7 @@ keysize=2048
|
||||||
umask 0077 && touch $*.key
|
umask 0077 && touch $*.key
|
||||||
openssl req -new -newkey rsa:$(keysize) -nodes -keyout $*.key \
|
openssl req -new -newkey rsa:$(keysize) -nodes -keyout $*.key \
|
||||||
-utf8 -subj /CN=$* -out $@
|
-utf8 -subj /CN=$* -out $@
|
||||||
@chmod 400 $*.key -c
|
@chmod 400 $*.key
|
||||||
|
|
||||||
# Self signed
|
# Self signed
|
||||||
%.crt: %.cnf %.key
|
%.crt: %.cnf %.key
|
||||||
|
@ -42,7 +42,7 @@ keysize=2048
|
||||||
umask 0077 && touch $*.key
|
umask 0077 && touch $*.key
|
||||||
openssl req -new -x509 -newkey rsa:$(keysize) -nodes -keyout $*.key \
|
openssl req -new -x509 -newkey rsa:$(keysize) -nodes -keyout $*.key \
|
||||||
-days 365 -sha256 -utf8 -config $(firstword $^) -out $@
|
-days 365 -sha256 -utf8 -config $(firstword $^) -out $@
|
||||||
@chmod 400 $*.key -c
|
@chmod 400 $*.key
|
||||||
|
|
||||||
%.crt: %.key
|
%.crt: %.key
|
||||||
openssl req -new -x509 -key $^ -days 365 -sha256 -utf8 -subj /CN=$* -out $@
|
openssl req -new -x509 -key $^ -days 365 -sha256 -utf8 -subj /CN=$* -out $@
|
||||||
|
@ -51,7 +51,7 @@ keysize=2048
|
||||||
umask 0077 && touch $*.key
|
umask 0077 && touch $*.key
|
||||||
openssl req -new -x509 -newkey rsa:$(keysize) -nodes -keyout $*.key \
|
openssl req -new -x509 -newkey rsa:$(keysize) -nodes -keyout $*.key \
|
||||||
-days 365 -sha256 -out $@ -utf8 -subj /CN=$*
|
-days 365 -sha256 -out $@ -utf8 -subj /CN=$*
|
||||||
@chmod 400 $*.key -c
|
@chmod 400 $*.key
|
||||||
|
|
||||||
# Generate a config from the example
|
# Generate a config from the example
|
||||||
%.cnf:
|
%.cnf:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue