mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-19 09:25:37 +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
|