Mercurial Hosting > luan
annotate host/renewSsl.sh @ 1784:fdc59d390615
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 07 Dec 2023 15:07:55 -0700 |
parents | 27a2530f04b6 |
children |
rev | line source |
---|---|
1632 | 1 #!/bin/bash |
2 | |
3 cd "$1"; | |
4 | |
5 ROOTPWD=$(pwd); | |
6 | |
7 ./acme.sh --renew-all --cert-home "$ROOTPWD"/sites --config-home "$ROOTPWD"/local/letsencrypt/config; | |
8 | |
1758
27a2530f04b6
fix reload nginx from startup script
Vadim Filimonov <fffilimonov@yandex.ru>
parents:
1632
diff
changeset
|
9 sudo /usr/local/bin/nginx -s reload; |