1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-31 07:57:55 +01:00

Merge pull request #651 from WALL-E/master

nginx:add stop,quit,reopen,reload
This commit is contained in:
Leandro Ostera 2016-02-13 00:29:33 +01:00
commit 6cfa475d3c

View file

@ -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`