ansible/server/scripts/renew_certificates.sh

9 lines
162 B
Bash
Raw Normal View History

2021-09-11 10:18:47 +02:00
#!/bin/bash
# certificate obtained with
#letsencrypt certonly --standalone -d home.bauer.tech
service nginx stop
sleep 30
letsencrypt renew
service nginx start