1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:02:08 +02:00
tldr/pages/common/nginx.md
2016-02-13 00:31:33 +01:00

23 lines
427 B
Markdown

# nginx
> Nginx web server.
- Start server with default config:
`nginx`
- Start server with custom config file:
`nginx -c {{config_file}}`
- Start server with a prefix for all relative paths in config file:
`nginx -c {{config_file}} -p {{prefix/for/relative/paths}}`
- Test configuration without affecting the running server:
`nginx -t`
- Reload configuration by sending a signal with no downtime:
`nginx -s reload`