Current version

This commit is contained in:
Alarig Le Lay 2018-04-09 14:21:01 +02:00
parent 7c03f86071
commit 19ec9744d1
1 changed files with 29 additions and 0 deletions

29
renew_cert.sh Executable file
View File

@ -0,0 +1,29 @@
#!/bin/sh
base_dir="/etc/ssl/nginx"
_EUID="$(id -u)"
die() {
echo "$@" >&2
exit 1
}
openssl x509 -checkend 2678400 -noout -in $base_dir/$1.crt
if [ $? = 0 ]; then
exit 1
else
mv $base_dir/$1.crt $base_dir/$1.crt.bak-$(date +%F)
mv $base_dir/$1.chained.crt \
$base_dir/$1.chained.crt-$(date +%F)
certbot certonly \
--csr $base_dir/$1.csr \
--cert-path $base_dir/$1.crt \
--chain-path $base_dir/$1.chained.crt \
--webroot \
-w /usr/local/www/le-challenges/ \
--agree-tos \
--register-unsafely-without-email || die "Error while signing certificate"
mv 0000_chain.pem $base_dir/$1-chained.crt
sudo service nginx reload
fi