Updated Validity (markdown)

master
neil 2022-04-01 21:47:50 +08:00
parent c2c5de45af
commit e62a64d120
1 changed files with 8 additions and 1 deletions

@ -37,7 +37,14 @@ acme.sh --issue -d example.com --dns dns_cf --valid-to "+30h"
```
Please be careful about the format, there are only `+*d` (for days) and `+*h` (for hours) supported for now. Any other format will result errors.
Please be careful about the format, there are only `+*d` (for days) and `+*h` (for hours) supported for now. Any other format will not be accepted.
## If the lifetime is measured in hours, you need to change the default crontab to run `acme.sh` every an hour:
```
0 * * * * "/root/.acme.sh"/acme.sh --cron --home "/root/.acme.sh" > /dev/null
```