comparison host/renewSsl.sh @ 1632:0344a535b1db

add doc
author fffilimonov
date Tue, 14 Dec 2021 07:41:01 +0000
parents
children 27a2530f04b6
comparison
equal deleted inserted replaced
1631:35c626c06dd5 1632:0344a535b1db
1 #!/bin/bash
2
3 set -e
4
5 cd "$1";
6
7 ROOTPWD=$(pwd);
8
9 ./acme.sh --renew-all --cert-home "$ROOTPWD"/sites --config-home "$ROOTPWD"/local/letsencrypt/config;
10
11 sudo $(which nginx) -s reload;