This commit is contained in:
yunwei37
2023-07-28 12:05:53 +00:00
parent 196b6653c5
commit 743c2ea332
24 changed files with 2461 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
certs:
openssl req -x509 -nodes -newkey rsa:4096 -keyout client.key -out client.crt -days 365 -subj '/CN=example.com'
openssl req -x509 -nodes -newkey rsa:4096 -keyout server.key -out server.crt -days 365 -subj '/CN=example.com'
clean:
rm -f client.key client.crt
rm -f server.key server.crt