Created
September 5, 2013 10:54
-
-
Save HowardMei/6448672 to your computer and use it in GitHub Desktop.
nginx auto restart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Wrapper based on MiteshShah script | |
# https://github.com/rtCamp/easyengine/issues/3 | |
# | |
# Start nginx | |
/usr/sbin/nginx | |
# Start supervising the config | |
while true | |
do | |
inotifywait --exclude .swp -e create /etc/nginx/sites-enabled | |
nginx -t | |
if [ $? -eq 0 ] | |
then | |
echo "Reloading Nginx Configuration" | |
/usr/sbin/nginx -s reload | |
else | |
echo "Error config" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍