mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-17 15:29:21 +00:00
7 lines
102 B
Bash
7 lines
102 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
while true; do
|
||
|
inotifywait -e modify /var/local/step/site.crt
|
||
|
nginx -s reload
|
||
|
done
|