Apache has a graceful option which can scan for modification in http.conf without restarting Apache. What about nginx?
Asked
Active
Viewed 9.9k times
5 Answers
146
Use nginx -s reload
Ethan Cane
- 1,469
-
7^This 100%. Worked a charm. – Sep 26 '13 at 12:00
-
1This didn't take http basic authentication changes into effect for me. – Nick Rolando Mar 04 '16 at 00:29
86
nginx supports the following signals :
TERM, INT - Quick shutdown
QUIT - Graceful shutdown
HUP - Configuration reload: Start the new worker processes with a new configuration, Gracefully shutdown the old worker processes
USR1 - Reopen the log files
USR2 - Upgrade Executable on the fly
WINCH - Gracefully shutdown the worker processes
HUP is what you are looking for, so sudo kill -HUP pid (nginx pid)
23
Usually nginx's init-script has reload action, i.e:
- Linux
/etc/init.d/nginx reload - FreeBSD
/usr/local/etc/rc.d/nginx reload
SaveTheRbtz
- 5,751
-2
I wrote about how to restart nginx with zero downtime a while ago. This may be helpful for you.
http://tumblelog.jauderho.com/post/101514948/restart-nginx-with-zero-downtime
Jauder Ho
- 5,567