11 lines
385 B
Markdown
11 lines
385 B
Markdown
- The syntax is as follows for Linux and Unix users:
|
|
- ```
|
|
nginx -s signal
|
|
```
|
|
- Signal can be stop, quit, reopen and reload. For instance, we can send reload signal as follows as the root user:
|
|
- ```
|
|
nginx -t
|
|
nginx -s reload
|
|
```
|
|
- weitere Commandos: [Linux Restart Nginx WebServer Command - nixCraft (cyberciti.biz)](https://www.cyberciti.biz/faq/nginx-linux-restart/)
|
|
- |