We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 76af2f9 + 2fc8b9b commit 3a82804Copy full SHA for 3a82804
scripts/renew-cert.sh
@@ -2,6 +2,11 @@
2
# renew the certificate. use --dry-run flag for testing.
3
cd /home/ddenu/urban-online-workflow;
4
5
-docker compose run --rm certbot certonly --force-renew --webroot --webroot-path /var/www/certbot/ -d urbanonline.naturalcapitalproject.org;
6
-
7
date >> /home/ddenu/cronjoblogs.txt;
+
+# --force-renew : force cert to renew even if not set to expire
8
+# --webroot : use the active webserver to place challenge, so Certbot
9
+# doesn't need to listen on port 80 directly.
10
+docker compose run --rm certbot certonly --force-renew \
11
+ --webroot --webroot-path /var/www/certbot/ \
12
+ -d urbanonline.naturalcapitalproject.org;
0 commit comments