99

Apache has a graceful option which can scan for modification in http.conf without restarting Apache. What about nginx?

Bart
  • 103
  • 4
vps
  • 1,227
  • 3
  • 13
  • 14

5 Answers5

144

Use nginx -s reload

Ethan Cane
  • 1,449
  • 1
  • 8
  • 2
85

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)

source : http://nginx.org/en/docs/control.html

Sam V
  • 129
  • 4
Razique
  • 2,276
  • 1
  • 19
  • 23
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,691
  • 4
  • 32
  • 45
2

service nginx reload ?

P.S. Doesn't work on Windows.

anatoly techtonik
  • 293
  • 1
  • 3
  • 13
-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,507
  • 2
  • 19
  • 17