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