Last active
October 14, 2019 07:15
-
-
Save progrium/5734609 to your computer and use it in GitHub Desktop.
Let unprivileged processes easily restart/reload Nginx without sudo or setuid hacks
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
# run this as root | |
while [ 1 ]; do echo | nc -l -U /tmp/reload_nginx && /etc/init.d/nginx reload; done | |
# or as an upstart job | |
script | |
echo | nc -l -U /tmp/reload_nginx && /etc/init.d/nginx reload | |
end script | |
respawn | |
# now any process can run this or do the equivalent with sockets to trigger reload | |
nc -U /tmp/reload_nginx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Brilliant ! :o)