1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 21:15:35 +02:00

nginx: small grammar fixes (#1537)

This commit is contained in:
Starbeamrainbowlabs 2017-10-11 17:11:20 +01:00 committed by Agniva De Sarker
parent 3e90d69a34
commit a6a29fcf09

View file

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