comparison host/startup/renewSsl.sh @ 1631:35c626c06dd5

add startup scripts for mac os
author fffilimonov
date Mon, 13 Dec 2021 09:14:52 +0000
parents
children
comparison
equal deleted inserted replaced
1630:b735ed134662 1631:35c626c06dd5
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;