Risposte:
nginx supporta i seguenti segnali:
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 è ciò che stai cercando, quindi sudo kill -HUP pid (nginx pid)
Usa nginx -s ricaricare
Di solito l'init-script di nginx ha reload
un'azione, vale a dire:
/etc/init.d/nginx reload
/usr/local/etc/rc.d/nginx reload
service nginx reload
?
PS non funziona su Windows.
Ho scritto su come riavviare nginx con zero tempi di inattività qualche tempo fa. Questo può esserti utile.
http://tumblelog.jauderho.com/post/101514948/restart-nginx-with-zero-downtime
USR2
serve per aggiornare l'eseguibile, non per ricaricare la configurazione.