From 62d7a6c598fd2c1c4131c79bb16c1b10096c55a1 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Wed, 12 Nov 2014 22:13:24 +0100 Subject: [PATCH] Add new example certificate Update the expired certificate with a new one and add a certificate generation script. --- generate-certificate | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 generate-certificate diff --git a/generate-certificate b/generate-certificate new file mode 100755 index 000000000..7b019f6df --- /dev/null +++ b/generate-certificate @@ -0,0 +1,3 @@ +#! /bin/sh + +openssl req -new -newkey rsa:3072 -sha256 -x509 -days 3650 -nodes -out beef_cert.pem -keyout beef_key.pem -subj "/CN=localhost"