From d7c9015d8b72dd0803fbdfdd5b1f24130c2e1eef Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sun, 31 Jul 2016 20:59:06 +0900 Subject: [PATCH] Update doc --- doc/nghttpx.h2r | 9 ++++++++- doc/sources/nghttpx-howto.rst | 3 +++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/doc/nghttpx.h2r b/doc/nghttpx.h2r index f8dc305b..e7fd9b52 100644 --- a/doc/nghttpx.h2r +++ b/doc/nghttpx.h2r @@ -49,6 +49,9 @@ SIGQUIT accepting connection. After all connections are handled, nghttpx exits. +SIGHUP + Reload configuration file given in :option:`--conf`. + SIGUSR1 Reopen log files. @@ -56,7 +59,11 @@ SIGUSR2 Fork and execute nghttpx. It will execute the binary in the same path with same command-line arguments and environment variables. After new process comes up, sending SIGQUIT to the original process - to perform hot swapping. + to perform hot swapping. The difference between SIGUSR2 + SIGQUIT + and SIGHUP is that former is usually used to execute new binary, and + the master process is newly spawned. On the other hand, the latter + just reloads configuration file, and the same master process + continues to exist. .. note:: diff --git a/doc/sources/nghttpx-howto.rst b/doc/sources/nghttpx-howto.rst index 28961ea8..15376b8d 100644 --- a/doc/sources/nghttpx-howto.rst +++ b/doc/sources/nghttpx-howto.rst @@ -236,6 +236,9 @@ all existing frontend connections are done, the current process will exit. At this point, only new nghttpx process exists and serves incoming requests. +If you want to just reload configuration file without executing new +binary, send SIGHUP to nghttpx master process. + Re-opening log files --------------------