diff --git a/pages/common/nginx.md b/pages/common/nginx.md index 3dfa83906..321d2af5c 100644 --- a/pages/common/nginx.md +++ b/pages/common/nginx.md @@ -17,3 +17,19 @@ - Test configuration without affecting the running server: `nginx -t` + +- Reload configuration, gracefully shut down old worker processes + +`nginx -s reload` + +- Shut down quickly + +`nginx -s stop` + +- Shut down gracefully + +`nginx -s quit` + +- Reopen log files + +`nginx -s reopen`