Originally created by @almereyda on GitHub (Nov 17, 2016).
I am creating new certificates with `$ vim /root/renew.sh`
```
#!/bin/sh
/root/github.com/lukas2511/dehydrated/dehydrated -c
/usr/sbin/nginx -t && /usr/sbin/nginx -s reload
```
and `$ crontab -e`
```
@daily /root/renew.sh
```
Should we add such a sample to the documentation?
You could also reload nginx in a hook script and just use dehydrated -c in the cron, no need to write a wrapper script.
@lukas2511 commented on GitHub (Nov 17, 2016):
You could also reload nginx in a hook script and just use `dehydrated -c` in the cron, no need to write a wrapper script.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @almereyda on GitHub (Nov 17, 2016).
I am creating new certificates with
$ vim /root/renew.shand
$ crontab -eShould we add such a sample to the documentation?
@lukas2511 commented on GitHub (Nov 17, 2016):
You could also reload nginx in a hook script and just use
dehydrated -cin the cron, no need to write a wrapper script.@almereyda commented on GitHub (Nov 24, 2016):
Thank you, yes, this is what I was missing.
@TyrfingMjolnir commented on GitHub (Sep 18, 2017):