mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:04:56 +02:00
Merge pull request #651 from WALL-E/master
nginx:add stop,quit,reopen,reload
This commit is contained in:
commit
6cfa475d3c
1 changed files with 16 additions and 0 deletions
|
@ -17,3 +17,19 @@
|
||||||
- Test configuration without affecting the running server:
|
- Test configuration without affecting the running server:
|
||||||
|
|
||||||
`nginx -t`
|
`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`
|
||||||
|
|
Loading…
Add table
Reference in a new issue